Resolutions
Get List of Resolutions
Use this API to retrieve a list of all request resolutions. The response will include details for each resolution along with the corresponding ID, type, and translations.
get/api/datasubject/v2/resolutions
Query parameters
languagestring
The language code for which to retrieve resolution code translations. For example, 'en-us' for English, 'fr' for French, 'de' for German, etc.
includeSubTaskResolutionsboolean
Set to true to include resolution codes that are applicable to subtasks. If false or omitted, only request-level resolution codes will be returned.
pageinteger
Results page you want to retrieve. Page number starts with 0 (0..N)
sizeinteger
Number of records per page. Maximum page size allowed is 500
sort'createdDate,asc' | 'createdDate,desc' | 'lastModifiedDate,asc' | 'lastModifiedDate,desc'
Sorting criteria in the format: property(,asc|desc). Default sort order is ascending.
Response
OK
Example response
[
{
"id": "682488af-c26f-463e-9941-2f1582c6d4da",
"close": true,
"reject": true,
"titleTranslations": {
"en-us": "Opt Out",
"fr": "Se désinscrire",
"de": "Abmelden"
},
"descriptionTranslations": {
"en-us": "Opt Out the Request",
"fr": "Se désinscrire de la demande",
"de": "Anfrage abmelden"
}
}
]