Skip to main content
DELETE
/
api
/
v1
/
contacts
/
{uuid}
Delete a contact
curl --request DELETE \
  --url https://{subdomain}.mindhunters.ai/api/v1/contacts/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact deleted successfully",
  "data": [
    "<any>"
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the contact to delete

Response

Success

success
boolean
Example:

true

message
string
Example:

"Contact deleted successfully"

data
any[]