Delete Customer
DELETE /v2/tms-api/customers/{id}
Delete a customer.
WARNING
This action cannot be undone. Make sure no active loads reference this customer.
API Reference
Path Parameters
idstringrequired The customer ID
Request Example
bash
curl -X DELETE "https://api.mentium.io/v2/tms-api/customers/cust_abc123" \
-H "X-API-Key: your_api_key_here"Response
204 No Content
Successful deletion - no response body.
404 Not Found
json
{
"error": {
"code": "NOT_FOUND",
"message": "Customer not found"
}
}