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

Submit a deletion request for a person and any related data

DELETE
https://api.cable.tech/v2/person
DELETE
/v2/person
1import requests
2
3url = "https://api.cable.tech/v2/person"
4
5payload = {
6 "person_id": "person_id",
7 "reason": "reason"
8}
9headers = {
10 "Authorization": "Bearer <token>",
11 "Content-Type": "application/json"
12}
13
14response = requests.delete(url, json=payload, headers=headers)
15
16print(response.json())
Try it
1{
2 "person_id": "person_id",
3 "deletion_request_id": "deletion_request_id"
4}
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>
Was this page helpful?
Previous

Check if a identity verification exists

Next
Built with
Check if a identity verification exists

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.

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 unique identifier of the person

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