URL: https://twin24.ai/cis/api/v1/calls/{callId}/depersonalization
Method: POST
Authentication type: Bearer
This method is used to depersonalize a call, i.e., to delete all sensitive data associated with it.
As a result of this method, the following data will be deleted:
skipDeleteRecord = true parameter is provided)This action is irreversible.
Deleted data cannot be recovered.
Use this method only if it is absolutely necessary.
We strongly recommend saving any necessary data on your end before deletion.
curl --location 'https://twin24.ai/cis/api/v1/calls/{callId}/depersonalization' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer TOKEN' \
--data '{
"skipDeleteRecord": true
}'
{
"skipDeleteRecord": false
}
| Field | Type | Required | Description |
|---|---|---|---|
| skipDeleteRecord | boolean | no | Determines whether to delete the audio recording of the conversation. (true — Skip deleting the recording; false or parameter not specified — Delete the call recording) |
If the method is executed successfully, a response with a 200 status code and no body will be returned.
URL: https://twin24.ai/cis/api/v1/telephony/autoCallCandidate/{autoCallCandidateId}/depersonalization
Method: POST
Authentication type: Bearer
This method is required to depersonalize a call, i.e., to delete all sensitive data associated with it.
As a result of this method, the following data will be deleted:
skipDeleteRecord = true parameter is passed)This action is irreversible.
It is impossible to recover deleted data.
Use this method only if it is truly necessary.
We strongly recommend saving the necessary data on your end before deletion.
curl --location 'https://twin24.ai/cis/api/v1/telephony/autoCallCandidate/{autoCallCandidateId}/depersonalization' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer TOKEN' \
--data '{
"skipDeleteRecord": true
}'
{
"skipDeleteRecord": false
}
| Field | Type | Required | Description |
|---|---|---|---|
| skipDeleteRecord | boolean | no | Determines whether to delete the audio recording of the conversation. (true — Skip deleting the recording; false or parameter not specified — Delete the call recording) |
If the method is executed successfully, a response with a 200 status code and no body will be returned.
URL: https://twin24.ai/cis/api/v1/calls/{callId}/record
Method: DELETE
Authentication type: Bearer
This method allows you to delete a call recording.
This action is irreversible.
Deleted audio recordings cannot be recovered.
Use this method only if absolutely necessary.
We strongly recommend saving any necessary data on your end before deletion.
curl --location --globoff --request DELETE 'https://twin24.ai/cis/api/v1/calls/{callId}/record' \
--header 'Authorization: Bearer TOKEN'
If the method is executed successfully, a response with a 200 status code and no body will be returned.
We recommend using this method as part of an integration.
Basic steps for integration using this method: