Okta Access Requests automate the process of requesting access to resources like apps, groups, and entitlement bundles. Each request is associated with a request approval process that determines the actions taken by Okta Access Requests. Manage this process directly with the following request APIs.
See Access Requests for more information on Access Requests and Identity Governance.
Lists all or a subset of requests made by users in your organization.
Use the ?filter= parameter to narrow results with the following request properties: requestStatus and lastUpdated.
Pagination parameters are accepted, and standard link headers are in the response.
Apply various filters by using supported request filtering properties.
Note: Query parameter percent encoding is required. See Percent-encoding
Apply an ordering of requests by specifying a supported request property name with %20asc or %20desc suffix.
Note: Query parameter percent encoding is required. See Percent-encoding
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v1/requests?filter=requestStatus%20eq%20%22RESOLVED%22&after=stringstringstringstring&limit=20&orderBy=created%20desc'A successful request list response
All requests on the current page
[ { "subject": "request-from-service-now-xsd23432", "requestTypeId": "61eb2db568c7c300079fefd0", "requesterUserIds": [ … ], "id": "61eb06a3c462d20007f0235c", "lastUpdated": "2022-05-05T14:15:22Z", "lastUpdatedBy": "00ub0oNGTSWTBKOLGLNR", "resolved": "2022-05-05T14:15:22Z'", "requestStatus": "RESOLVED", "type": "ACCESS_REQUEST", "permalinkId": 1, "_links": { … } } ]
{ "data": [ { … }, { … } ], "_links": { "self": { … }, "next": { … } } }