v1

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

Get Request Audit History

Use this API to retrieve the audit history of a request. The response will include details such as field updates and the date and time when changes were made.

get/api/datasubject/v2/requestqueues/{requestQueueRefId}/requesthistory

Path parameters

requestQueueRefIdstring required

10-character ID that is unique to each request. This ID can be obtained either from the response of the GET /requestqueues/{language} api or by navigating to the Requests section within the DSAR module in the application

Query parameters

pageinteger

Results page you want to retrieve. Page number starts with 0 (0..N)

sizeinteger

Number of records per page.

Response

OK

descriptionstring

The description of the request attribute audited.

changeDateTimestring date-time

The timestamp when the change was done.

recordedDateTimestring date-time

The timestamp when the audit was recorded.

Example response

[
  {
    "changeDateTime": "2020-12-04T15:52:41.954300Z",
    "recordedDateTime": "2020-12-04T15:52:41.954300Z",
    "changes": [
      {
        "fieldName": "Country"
      }
    ]
  }
]