v24

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-014382230.2 KB

Delete a contact

Deletes a contact from the workspace by email address. This action is permanent and cannot be undone.

post/api/contacts.delete

Request body

workspace_idstring required

The ID of the workspace

emailstring email required

Email address of the contact to delete

Example request

{
  "workspace_id": "ws_1234567890",
  "email": "user@example.com"
}

Response

Contact deleted successfully

successboolean

Whether the deletion was successful

Example response

{
  "success": true
}