DELETE/v1/contacts/{id}

Delete contact

Remove an existing contact.

Authentication

Requires a Bearer token (API key) in the Authorization header.

Path parameters

idstringrequired

Unique identifier (UUID) or email address of the contact.

Response

200Contact deleted

{
  "success": true
}

404Contact not found

{
  "success": false,
  "message": "string"
}