Delete a company permanently

Permanently removes a company from your Customerly account. This action is irreversible
and will delete the company and all associated data.

⚠️ Warning: This action cannot be undone. Make sure you really want to delete this company.

How to Identify the Company to Delete

Use any of these identifier formats in the URL path:

1. Customerly Company ID (numeric):

  • Example: DELETE /companies/12345
  • The internal numeric ID from Customerly

2. Custom Company ID (prefix: cid:):

  • Example: DELETE /companies/cid:company_abc123
  • Your own custom identifier for the company

Response

  • 204 No Content: Company successfully deleted (empty response body)
  • 404 Not Found: Company doesn't exist

Example Requests

# Delete by Customerly ID
DELETE /companies/12345

# Delete by custom company ID
DELETE /companies/cid:company_abc123
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

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

Responses
204

Company successfully deleted. No content is returned in the response body.

401

Authentication credentials are missing or invalid. Please check your API key.

403

You don't have permission to delete companies. Check your account permissions.

404

Company not found. The identifier doesn't match any company in your account. The company may have already been deleted or never existed.

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