Delete a customer contact
Use this endpoint to delete a contact of a customer.
Request
DELETE /api/v1/customers/:customer_number/contacts/:contact_id
curl --request DELETE \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/customers/K-12345/contacts/42' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'Parameters
- customer_number (string, required): The customer number
- contact_id (integer, required): The ID of the contact
Response
{
"message": "Deleted successfully"
}