Get List of Subtasks
❗️ End of Support Notification
As of January 1, 2026, this API is now deprecated. Any customers leveraging this API are encouraged to use the Get List of Subtasks by Criteria API. For more information, see OneTrust API Sunsetting & Deprecation Guidelines.
Use this API to retrieve a list of all subtasks. The response will include details for each subtask along with the request approver, created date, and deadline.
🗒 Things to Know
- This API does not return subtasks in Complete status.
Query parameters
A language code that identifies the language in which the Request Type and Subject Type values should be returned, assuming translations are available for that language. Examples: language=en-us for English, language=de for German, language=es for Spanish, etc.
A date (yyyyMMdd). Include to retrieve a list of subtasks modified on or after the specified date. For example, if you want to retrieve subtasks modified on or after January 30, 2019, include the modifieddate=20190130 parameter in your query.
To get a SubTasks according to Status. Examples: status=assigned
An optional parameter to show subtasks on open requests if set to true.if this parameter is set to false or omitted, the response will contain subtasks on all requests Examples: openrequests=true
Results page you want to retrieve. Page number starts with 0 (0..N)
Number of records per page. Maximum page size allowed is 500
Sorting criteria in the format: property(,asc|desc). Default sort order is ascending.
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"
}
]