Skip to main content
All endpoints require an Authorization: Bearer <token> header.

Endpoint

DELETE /api/customers/:id

Path parameters

id
string
required
UUID of the customer to delete.

Response

success
boolean
required
true when the customer was successfully deleted.

Examples

curl --request DELETE \
  --url http://localhost:5000/api/customers/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  --header 'Authorization: Bearer <token>'

Example response

{
  "success": true
}

Build docs developers (and LLMs) love