For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact Us
Knowledge BaseProduct UpdatesAPI Documentation
Knowledge BaseProduct UpdatesAPI Documentation
    • Getting Started
  • API Reference
      • GETCheck if a company exists
      • POSTAdd company information
      • PUTUpdate companies in batch
      • DELSubmit a deletion request for a company and any related data
Contact Us
LogoLogo
API ReferenceCompany

Submit a deletion request for a company and any related data

DELETE
https://api.cable.tech/v2/company
DELETE
/v2/company
$curl -X DELETE https://api.cable.tech/v2/company \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "company_id": "c1234567-89ab-4def-0123-456789abcdef",
> "reason": "Company is no longer operational and requests permanent data removal."
>}'
1{
2 "company_id": "c1234567-89ab-4def-0123-456789abcdef",
3 "deletion_request_id": "dreq-20240615-9876543210"
4}
This operation will submit a request to delete the company and any related data. The deletion request will be processed by the system and the data will be removed permanently from Cable's system. Deletion requests are not processed immediately and may take some time to complete. The status of the deletion request can be checked using the deletion request ID and the status endpoint. <Warning>This operation is not intended for regular use and should be used with caution.</Warning>
Was this page helpful?
Previous

Check if a customer sar exists

Next
Built with

This operation will submit a request to delete the company and any related data.

The deletion request will be processed by the system and the data will be removed permanently from Cable’s system. Deletion requests are not processed immediately and may take some time to complete.

The status of the deletion request can be checked using the deletion request ID and the status endpoint.

This operation is not intended for regular use and should be used with caution.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
company_idstringRequired
The unique identifier of the company
reasonstringRequired
The reason for deletion

Response

Deletion request submitted successfully
company_idstring
The unique identifier of the company
deletion_request_idstring
The unique identifier of the deletion request

Errors

401
Unauthorized Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error