Subtasks
Get List of Subtasks by Request
Use this API to retrieve a list of all subtasks associated with a specific request. The response will include details for each subtask along with the request approver, date created, and deadline.
get/api/datasubject/v2/requestqueues/{requestQueueRefId}/subtasks
Path parameters
requestQueueRefIdstring required
Request queue reference Id
Query parameters
pageinteger
Results page to be retrieved (0..N)
sizeinteger
Number of records per page (1..50)
Response
OK
Example response
[
{
"requestApprover": "John Doe",
"requestQueueRefId": "SL244HWD6D",
"requestOrgName": "Example Organization",
"subTaskStatus": "OPEN",
"subTaskType": "MANUAL",
"subTaskName": "Data Discovery",
"subTaskDescription": "Discover all data related to the subject",
"subTaskAssignee": "Jane Smith",
"subTaskRequired": true,
"requestQueueDateCreated": "2023-08-01T10:15:30Z",
"requestQueueDeadline": "2023-09-01T10:15:30Z",
"subTaskCreatedDate": "2023-08-02T14:30:45Z",
"subTaskLastUpdatedDate": "2023-08-15T09:20:15Z",
"subTaskReminderDate": "2023-08-25T10:15:30Z",
"subTaskDeadline": "2023-09-01T10:15:30Z",
"requestTypes": [
"Data Portability",
"Update Data"
],
"subjectTypes": [
"Customer",
"Employee"
],
"subTaskResolution": "Completed Successfully"
}
]