Skip to main content
DELETE
/
crm
/
objects
/
{slug}
Delete a CRM object
curl --request DELETE \
  --url https://api.zeeg.me/v2/crm/objects/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "message": "Object 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.

This action is permanent and cannot be undone.
Deleting a CRM object permanently removes:
  • The object definition and all its attribute definitions
  • All records stored in the object
  • Any relation attributes in other objects that pointed to this object (the attribute is removed from those objects automatically)
Standard objects (people, companies) cannot be deleted — the endpoint returns 403.

Authorizations

Authorization
string
header
required

Path Parameters

slug
string
required

The slug of the custom object to delete.

Example:

"products"

Response

OK — object deleted

success
boolean
Example:

true

status
integer
Example:

200

message
string
Example:

"Object deleted."

Last modified on May 7, 2026