Get caller user permissions
GET/nevisidm/api/principal/v1/permissions
Since: 2.80.0
Returns the set of elementary permissions granted to the currently authenticated caller user.
The permissions are derived from the roles assigned to the caller's login profile. This endpoint does not require any specific permission to call.
Responses
- 200
Caller user permissions returned successfully
- application/json
- Schema
- Example (from schema)
Schema
elementaryPermissions string[]
Set of elementary permission names granted to the caller user through their assigned roles.
{
"elementaryPermissions": [
"AccessControl.ConsentView",
"AccessControl.SelfAdmin",
"AccessControl.CredentialView",
"AccessControl.ClientView"
]
}
Loading...