- Management APIs
- Access Requests - V2
- Retrieve a task
Retrieves all the details of a specific task.
Use this operation to retrieve a task from access requests managed by access request conditions. More information is returned than the shortened task details in the List all tasks operation.
curl -i -X GET \
https://subdomain.okta.com/governance/api/v2/tasks/68b0a1576dd8db837f5ee55dA successful get task response
The unique identifier for the task
List of task assignees that perform actions on the task
The ISO 8601 formatted date and time when the object was created
The ISO 8601 formatted date and time when the object was last updated
Indicates whether a task is escalated to another user. See Escalate Tasks in the product documentation.
Indicates whether a task is delegated to another user. See Governance delegates in the product documentation.
ID of the original assignee before delegation or escalation
- OPEN task |tooltip| OPEN tasks have a pending action from the assignees. The task remains OPEN until an assignee completes the task.
- COMPLETED task |tooltip| COMPLETED tasks are completed by an assignee with the value field that indicates the outcome of the task
- ASSIGNING task |tooltip| ASSIGNING tasks are in the process of being assigned
- LOCKED task |tooltip| LOCKED tasks have a dependency on other open tasks. The task remains LOCKED until all of its dependencies are completed.
- Escalated task |tooltip| A task that was escalated to another assignee
{ "id": "68b0ed9802df442e8b601807", "assignees": [ { … }, { … } ], "status": "OPEN", "label": "This is an approval task", "requestId": "req42kjDgk1EubTwo0g4", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "type": "APPROVAL", "isEscalated": false, "isDelegated": false }