Delete customer
documentedDeletes the customer.
POST api/Customer/RemoveCustomer/{id}Customerno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.cayzu.com/api/Customer/RemoveCustomer/{{$id}}" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"reason": "{{$reason}}", "comment": "{{$comment}}", "requested_by": "{{$requestor}}"}'
# Source: Cayzu API documentation confirms the RemoveCustomer endpoint path and method (POST) under api/Customer/RemoveCustomer/{id} and base URL https://api.cayzu.com/; See Cayzu API Help page: https://api.cayzu.com/help
# Base URL verification inferred from Cayzu API docs (e.g., Help/Api endpoints at https://api.cayzu.com/Help/Api/GET-api-Reply_ticketId)