Remove a contact from a company

Removes the association between a contact and a company. The contact and company
themselves are not deleted, only the relationship between them is removed.

How to Identify the Contact

Use any of these identifier formats in the URL path:

How to Identify the Company

Use any of these identifier formats in the URL path:

  • Numeric ID: 12345
  • Custom company ID: cid:company_abc123

Response

  • 204 No Content: Association successfully removed (empty response body)
  • 404 Not Found: Contact or company doesn't exist

Example Requests

# Remove contact from company using numeric IDs
DELETE /contacts/29911301/companies/12345

# Remove contact from company using custom IDs
DELETE /contacts/cuid:user_abc123/companies/cid:acme_corp

# Remove contact from company using email and custom company ID
DELETE /contacts/uem:[email protected]/companies/cid:acme_corp
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

Contact identifier. Can be: numeric ID (e.g., '12345'), custom user ID with 'cuid:' prefix (e.g., 'cuid:user_123'), custom lead ID with 'clid:' prefix (e.g., 'clid:lead_456'), WhatsApp with 'wa:' prefix (e.g., 'wa:+1234567890'), or email with 'uem:' or 'lem:' prefix (e.g., 'uem:[email protected]' for users or 'lem:[email protected]' for leads).

string
required

Company identifier. Can be either the numeric Customerly company ID (e.g., '12345') or your custom_company_id prefixed with 'cid:' (e.g., 'cid:company_12345').

Responses
204

Contact successfully removed from company. No content is returned in the response body.

401

Authentication credentials are missing or invalid

403

You don't have permission to modify contact-company associations

404

Contact or company not found, or the contact is not associated with this company

Language
Credentials
Bearer
LoadingLoading…
Response
Click Try It! to start a request and see the response here!