📁 Table of Contents
Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
The request body allows you to specify the scope of the data to be deleted:
PersonalData: This option ensures that all client-related information is erased. This includes forms and media but excludes biometric data. Additionally, for KYB (Know Your Business) purposes, any personal data linked to representatives' identifications will also be removed.
BiometricData: Selecting this scope results in the deletion of only biometric information associated with KYC (Know Your Customer) identifications, provided such data exists.
2️⃣ Monitor data deletion
Upon initiating a deletion request, processing commences immediately.
...
2️⃣ Monitor data deletion
To monitor the status of your requests, please execute a:
operation onStatus colour Blue title get /v1/identity-verifications/{id}
, which provides access to detailed redaction information for each event. Key details available include:
Code Block | ||||
---|---|---|---|---|
| ||||
{ "clientId": "Identifier of who initiated the deletion", "completedUtc": "Timestamp marking when the event was completed", "createdUtc": "Timestamp indicating when the event was created", "scope": "[ PersonalData, BiometricData ] - Specifies what type of data is being deleted", "source": "[ OnDemand, DataRetentionPolicy ] - 'OnDemand' refers to deletions triggered via this API endpoint; 'DataRetentionPolicy' pertains to future implementation for automated deletions based on predetermined client configuration.", "status": "[ InProgress, Completed ] - Indicates current status of redaction" } |
...