Tamio

Delete a customer

DELETE https://api.tamio.com/v2/customers/{uuid}

Permanently deletes a customer and all associated data including notes, discounts, and subscriber records.

Path Parameters

uuid string*

Responses

200 Customer deleted successfully

Customer deleted successfully

status integer
customers array of string

UUIDs of deleted customers

400 Validation or business-logic error.
401 Unauthorized – invalid or missing Bearer token
/customers/{uuid}
1const response = await fetch("https://api.tamio.com/v2/customers/{uuid}", {
2 method: "DELETE",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Accept": "application/json"
6 }
7});
8const data = await response.json();
Responses
{
  "status": 200,
  "customers": []
}