v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Request Queues

Get Deletion Certificate

Use this API to retrieve a deletion certificate for a deleted request. The response will serve as the deletion certification and will include details such as the retention policy (if applicable), deletion date and time, and deletion mode.

🗒 Things to Know

  • Certificate data is available only for requests deleted within the past 360 days.
get/api/datasubject/v2/requestqueues/delete-certificate/{requestRefId}

Path parameters

requestRefIdstring required

Deleted Request Reference ID (10-character ID that is unique to each request)

Response

OK

requestIdstring uuid

The request GUID

requestRefIdstring

Reference ID of the request. This is a 10-character ID that is unique to each request.

retentionPolicystring

The name of the retention policy that deleted the request. Null if deletion mode is not RETENTION_POLICY. If the policy is deleted, this will show the policy ID.

deletionDatestring date-time

Timestamp when the request was deleted.

deletionMode'MANUAL' | 'API' | 'RETENTION_POLICY'

Mode of deletion

userIdstring uuid

The ID of the user who manually deleted the request. This is null if the deletion was not manual.

Example response

[
  {
    "requestId": "e2d0f59e-3df0-4b1f-965d-d57547ed44ad",
    "requestRefId": "SL244HWD6D",
    "retentionPolicy": "Cyprus Default Policy",
    "deletionDate": "2025-09-02T12:44:20.740Z",
    "deletionMode": "RETENTION_POLICY",
    "userId": "de8bf5bd-4c24-4aa6-a2c6-0e537bc06e36"
  }
]