DELETE
/v1/contacts/{id}Delete contact
Remove an existing contact.
Authentication
Requires a Bearer token (API key) in the Authorization header.
Path parameters
idstringrequiredUnique identifier (UUID) or email address of the contact.
Response
200—Contact deleted
{
"success": true
}404—Contact not found
{
"success": false,
"message": "string"
}