- Management APIs
- Access Requests - V1
- Retrieve a request
Retrieves the full representation of a specific request
More information is returned than the abbreviated representation in a List all requests operation.
curl -i -X GET \
'https://subdomain.okta.com/governance/api/v1/requests/{requestId}'A successful get request response
The id of the Okta user who created the resource
The ISO 8601 formatted date and time when the resource was created
The ISO 8601 formatted date and time when the object was last updated
The id of the Okta user who last updated the object
The request type id.
The subject of the request
A list of requester Okta user ids.
[ "00ub0oNGTSWTBKOLGLNR" ]
A request has a lifecycle. See our request lifecycle documentation.
A request progresses in its lifecycle state based on requester, approver, and administrator activities across a variety of channels, such as:
- Access Request portal
- Slack
- Microsoft teams
The following lifecycle operations are available on a single request.
The date the request was resolved. The property may transition from having a value to null if the request is reopened.
Field values provided when adding the request.
If a request type has required requesterFields, they must be provided when the request is created.
Non-required fields may be omitted when creating the request.
A list of actions. Currently only supports one action per request.
The immutable, persistent identifier that always resolves to the request
- ACCESS_REQUEST
- CUSTOM
- Resolved request with one approval |tooltip| Success response to get a Request
- Open request with requester and approver field values |tooltip| Two required approvals, but one still pending
- Request using CUSTOM Request Type |tooltip| Success response for GET Request using CUSTOM Request Type
- Time bound access, ten day access duration |tooltip| A request where access has been granted, and the accessDuration has expired.
- Time bound access, not yet expired |tooltip| A request where access has been granted, but it is time bounded and will be revoked in the future.
{ "id": "61eb06a3c462d20007f0235c", "subject": "request-from-service-now-xsd23432", "requestTypeId": "61eb2db568c7c300079fefd0", "created": "2022-05-05T14:15:22Z", "createdBy": "00ub0oNGTSWTBKOLGLNR", "lastUpdated": "2022-05-05T14:15:22Z", "lastUpdatedBy": "00ub0oNGTSWTBKOLGLNR", "permalinkId": 1, "resolved": "2022-05-05T14:15:22Z", "requestStatus": "RESOLVED", "requesterUserIds": [ "00ub0oNGTSWTBKOLGLNR" ], "requesterFieldValues": [ { … } ], "approvals": [ { … } ], "actions": [ { … } ], "type": "ACCESS_REQUEST", "_links": { "requestType": { … }, "self": { … } } }