Object Task Management
Get Task
Use this API to retrieve a specific task on an object. The response will include details such as the activity history, assignee, and deadline.
🗒 Things to Know
- This API only supports objects created via Object Manager, including Projects, Models, and Datasets.
get/v1/tasks/{taskId}
Path parameters
taskIdstring uuid required
Unique identifier of the task to retrieve
Example:41955b71-e581-4187-ab6c-d00d1403350c
The unique identifier of the task.
Query parameters
includePermissionsMetadataboolean
Whether to include permissions metadata in the response
This flag indicates whether to include permissions metadata.
excludeInactiveTaskboolean
Whether to exclude inactive tasks from the response
This flag indicates whether to exclude inactive tasks.
Response
OK
Example response
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"taskName": "Document Review Task",
"status": "Open",
"priority": "MEDIUM",
"deadline": "2023-12-31T23:59:59Z",
"description": "This task requires reviewing document X and providing feedback",
"assigneeId": "123e4567-e89b-12d3-a456-426614174000",
"isActive": true,
"taskType": {
"id": "type-123",
"name": "Document Review",
"description": "Review and approve documents"
},
"moduleSource": "PRIVACY_RIGHTS",
"activity": "COMPLETE_TASK",
"presentationMode": "DEFAULT",
"isCollaboratorSupported": true,
"relativeUrl": "/tasks/review/123",
"workflowId": "workflow-456",
"stageName": "Review",
"isPastDue": false,
"createdDT": "2023-01-15T14:30:00Z",
"modifiedDT": "2023-01-20T16:45:00Z",
"isRequired": true
}