Skip to main content
DELETE
/
customers
/
{customerId}
Delete customer by ID
curl --request DELETE \
  --url https://{publicHost}/customers/{customerId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "deleted": true,
  "id": "00000000-0000-4000-8000-000000000001"
}

Authorizations

Authorization
string
header
required

Integration-key Basic Auth (clientId:clientSecret) as documented in docs/public/AUTHENTICATION.md.

Path Parameters

customerId
string
required

System-generated customer UUID for the customer record addressed by this endpoint.

Response

Customer deleted.

Customer delete acknowledgement. Customer-bound internal accounts, external accounts, and PPV/payment-address state are removed or invalidated with the customer.

deleted
boolean
required

Whether the delete completed successfully.

id
string
required

System-generated customer identifier that was deleted.