Okta Identity Governance
/Management APIs
/- Retrieve a security access review
List all security access reviews
Create a security access review
Retrieve the statistics for security access reviews
Update a security access review
Generate a summary for a security access review
List the actions for a security access review
Execute an action on a security access review
Retrieve the principal for a security access review
List the access items for a security access review
List the sub-access items for an access item
List the anomalies for an access item
Generate a summary for an access item
Execute an action on an access item
List the history of a security access review
Add a comment for a security access review
Retrieve a security acces...
OAuth 2.0 scope:
- okta.governance.securityAccessReviews.admin.read
Admin roles:
- SUPER_ADMIN
Permissions:
- okta.governance.securityAccessReviews.admin.read
Retrieves a security access review
GET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v2/security-access-reviews/{securityAccessReviewId}'A successful security access review get 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
Security access review status
Enum:"ACTIVE""CLOSED""PENDING""ERROR"
The reviewer settings for a security access review. These include the type of reviewers and a list of reviewer IDs.
Response
{ "id": "sar1lo5X9wmNTFX7x0g4", "status": "PENDING", "name": "Test SAR", "reviewerSettings": { "type": "USER", "userSettings": { … } }, "createdBy": "00ucfd4IQoH6YBZgA0g4", "created": "2025-06-13T00:40:57Z", "lastUpdated": "2025-06-13T00:40:57Z", "lastUpdatedBy": "00ucfd4IQoH6YBZgA0g4", "_links": { "securityAccessReviewDetails": { … }, "history": { … }, "userDetails": { … }, "accesses": { … }, "actions": { … } } }