Skip to main content
DELETE
/
crm
/
companies
/
{id}
Delete a CRM company
curl --request DELETE \
  --url https://api.zeeg.me/v2/crm/companies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Company 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 company record and all associated data (notes, activity logs, relationships).
This action is irreversible. All data stored on this company record will be permanently deleted.

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

UUID of the company record to delete.

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

message
string
Example:

"Company deleted."

Last modified on May 7, 2026