Archive customer
Archive a customer.
DELETE /customers/{customerId}This does not delete the row for good. It sets an archived time. The customer stops showing in Contendar and in list endpoints, but the data is kept.
Authentication
Send your API key as a bearer token. See Authentication .
Path parameters
| Parameter | Type | Notes |
customerId | UUID | The ID of the customer. |
Query parameters
| Parameter | Type | Notes |
projectId | UUID | Required. The project the customer belongs to. |
Response
{ "success": true }Errors
Returns 404 if no customer with that ID exists in the project.
Example
curl -X DELETE "https://app.contendar.com/api/v1/customers/c1a2b3c4-d5e6-4f70-8a9b-0c1d2e3f4a5b?projectId=YOUR_PROJECT_ID" \
-H "Authorization: Bearer ck_your_key_here"Related pages
Was this helpful?