Beta
OAuth 2.0 scope:
- okta.accessRequests.tasks.read
Lists all tasks assigned to you from access requests managed by OIG access request conditions.
See Access request conditions in the product documentation.
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.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.
Note: Query parameter percent encoding is required. See Percent-encoding.
Examples:
Filter by status
filter=status eq "OPEN"Filter by type
filter=type eq "QUESTION"Filter by requestId
filter=requestId eq "0oafxqCAJWWGELFTYASJ"Filter by createdAt
filter=createdAt gt "2022-05-24T14:15:22Z"Filter by updatedAt
filter=updatedAt gt "2022-05-24T14:15:22Z"Specifies the pagination cursor for the next page of results. Treat this as an opaque value obtained through the standard link headers. See pagination.
Example:after=68b0a1576dd8db837f5ee55d
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.
Examples:
Order by created
orderBy=createdAt descOrder by updatedAt
orderBy=updatedAt descGET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v2/my/tasks?filter=status%20eq%20%22OPEN%22&limit=20&after=68b0a1576dd8db837f5ee55d&orderBy=createdAt%20desc'Response
- List my task response with no filter
- List my task response with multiple filters |tooltip| A response with filters on status, type, requestId, createdAt, and updatedAt
{ "data": [ { … } ], "_links": { "self": { … }, "next": { … } } }