Task Management
Get Task
Use this API to retrieve a specific task on an entity. The response will include details such as the activity history, assignee, and deadline.
🗒 Things to Know
- This API only supports AI Governance entities (Models, Datasets, AI Systems, and AI Agents).
- AI Governance APIs will become available over the course of the Spring as customer tenants are upgraded to enhanced AI Governance services. No customer action is required and more detailed information will be published in upcoming release notes and product documentation.
get/api/ai-governance/v1/tasks/{taskId}
Path parameters
taskIdstring uuid required
Task identifier
Task Id
Query parameters
includePermissionsMetadataboolean
Flag to include permissions metadata
Flag to include permissions metadata
excludeInactiveTasksboolean
Flag to exclude inactive tasks
Flag 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
}