Okta Identity Governance
/Management APIs
/- Retrieve the principal for a security access review
List all security access reviews
Create a security access review
Retrieve the statistics for security access reviews
Retrieve a security access review
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
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 the principal fo...
OAuth 2.0 scope:
- okta.governance.securityAccessReviews.admin.read
Admin roles:
- SUPER_ADMIN
Permissions:
- okta.governance.securityAccessReviews.admin.read
Retrieves the details of a security access review's principal target
GET
curl -i -X GET \
'https://okta-subdomain.pixtulate.com/governance/api/v2/security-access-reviews/{securityAccessReviewId}/principal'A successful security access review principal details get response
Okta user's sign-in credentials, which is often their email address
The status of the principal's profile
Enum:"ACTIVE""INACTIVE"
The type of principal
Enum:"USER""CLIENT_APP""UNKNOWN""AI_AGENT"
The latest sign-in details for the Okta user
List of Okta admin roles assigned to the principal
Response
{ "id": "00ucpjbi6JMmDvdN40g4", "email": "john.doe@okta.com", "firstName": "John", "lastName": "Doe", "login": "john.doe@okta.com", "status": "ACTIVE", "department": "Engineering", "manager": "Jane Smith", "role": "Software Engineer", "homeLocation": { "city": "San Francisco", "state": "CA", "country": "USA" }, "lastLoginInfo": { "date": "2025-06-12T15:30:00Z", "location": { … }, "device": "MacBook Pro", "ipAddress": "127.0.0.1" }, "oktaAdminRoles": [ { … } ], "createdBy": "00ucfd4IQoH6YBZgA0g4", "created": "2025-06-13T00:40:57Z", "lastUpdated": "2025-06-13T00:40:57Z", "lastUpdatedBy": "00ucfd4IQoH6YBZgA0g4", "_links": { "securityAccessReviewDetails": { … }, "history": { … }, "userDetails": { … }, "accesses": { … }, "actions": { … } } }