Lists all tasks from requests made by users in your org. Use this operation to retrieve all tasks from all access requests managed by access request conditions.
Pagination parameters are supported, and standard link headers are returned in the response.
A filter expression that filters a collection of tasks in the response. The filter expression supports the following properties and operators:
status: The status of the task. Possible values:OPEN,COMPLETED,ASSIGNING, andLOCKED. Supports theeqoperator.type: The type of the task. Possible values:QUESTION,APPROVAL, andTODO. Supports theeqoperator.assigneeId: The Okta user ID of the task assignee. Supports theeqoperator.requestId: The ID of the request for the task. Supports theeqoperator.createdAt: The task created time. Supports thegt,ge,le, andltoperators.updatedAt: The latest task updated time. Supports thegt,ge,le, andltoperators.
You can combine multiple filter expressions using the and operator.
Note: Query parameter percent encoding is required. See Percent-encoding.
Specifies the pagination cursor for the next page of results. Treat this as an opaque value obtained through the standard link headers. See pagination.
Specifies a property to sort the results. The following properties are supported:
createdAtupdatedAt
Append desc or asc to indicate the sorting direction.
Note: Query parameter percent encoding is required. See Percent-encoding.
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v2/tasks?filter=status%20eq%20%22OPEN%22&limit=20&after=68b0a1576dd8db837f5ee55d&orderBy=createdAt%20desc'- List task response with no filter |tooltip| A list task response with no filter
- List task response with multiple filters |tooltip| A list task response with filters on status, type, requestId, createdAt, and updatedAt
{ "data": [ { … } ], "_links": { "self": { … }, "next": { … } } }