Contact Us
Knowledge BaseProduct UpdatesAPI Documentation
Knowledge BaseProduct UpdatesAPI Documentation
    • Getting Started
  • API Reference
Contact Us
LogoLogo
API ReferencePerson

DELETE
https://api.cable.tech/v2/person
DELETE
/v2/person
1curl -X DELETE https://api.cable.tech/v2/person \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "person_id": "person_id",
6 "reason": "reason"
7}'
Try it
1{
2 "person_id": "person_id",
3 "deletion_request_id": "deletion_request_id"
4}
Was this page helpful?
Previous

Check if a identity verification exists

Next
Built with
This operation will submit a request to delete the person 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>
Submit a deletion request for a person and any related data

Authentication

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

Headers

AuthorizationstringRequired

Request

This endpoint expects an object.
person_idstringRequired
The unique identifier of the person
reasonstringRequired
The reason for deletion

Response

Deletion request submitted successfully
person_idstring or null
The unique identifier of the person
deletion_request_idstring or null
The unique identifier of the deletion request

Errors

The reason for deletion
Deletion request submitted successfully

This operation will submit a request to delete the person 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.

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