v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
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

requestApproverstring

Approver of the parent request

requestQueueRefIdstring

The request reference ID

requestOrgNamestring

Organization name of the request

subTaskStatusstring

Current status of the subtask

subTaskTypestring

Type of the subtask

subTaskNamestring

Name of the subtask

subTaskDescriptionstring

Description of the subtask

subTaskAssigneestring

Person assigned to the subtask

subTaskRequiredboolean

Whether the subtask is required

requestQueueDateCreatedstring date-time

Date when the parent request was created

requestQueueDeadlinestring date-time

Deadline for the parent request

subTaskCreatedDatestring date-time

Date when the subtask was created

subTaskLastUpdatedDatestring date-time

Date when the subtask was last updated

subTaskReminderDatestring date-time

Reminder date for the subtask

subTaskDeadlinestring date-time

Deadline for the subtask

requestTypesstring[]

Types of the parent request

subjectTypesstring[]

Subject types of the parent request

subTaskResolutionstring

Resolution code for the subtask if completed or rejected

requestQueueIdstring uuid
assignedToGroupboolean
subTaskIdstring uuid

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"
  }
]