Skip to main content
DELETE
/
crm
/
people
/
{id}
Delete a CRM person
curl --request DELETE \
  --url https://api.zeeg.me/v2/crm/people/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Person deleted."
}

Documentation Index

Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt

Use this file to discover all available pages before exploring further.

Permanently deletes a CRM person record and all associated data (notes, activity logs, relationships).
This action is irreversible. All data stored on this person record will be permanently deleted.

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

UUID of the person record to delete.

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

message
string
Example:

"Person deleted."

Last modified on May 7, 2026