Get credential state change reasons
GET/nevisidm/api/core/v1/system/credential-state-change-reasons
Since: 2.79.0
Returns all available reasons for credential state changes as a list of string values.
These reasons describe why a credential transitioned between states, such as initialization, activation, login failures, admin actions, policy violations, or batch job processing.
Responses
- 200
Credential state change reasons retrieved successfully
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
items string[]
_pagination object
continuationToken string
The continuation token for fetching the next page of results generated from creation date and external id of the last entity
limit int32
The maximum number of results returned in a single page
totalResult int64
The total number of results available, only supported for selected endpoints, if returnTotalResultCount query-parameter is true
_classifications object
property name* string[]
string
{
"items": [
"string"
],
"_pagination": {
"continuationToken": "1759758863000_aoo23",
"limit": 50,
"totalResult": 150
},
"_classifications": {}
}
{
"items": [
"customized-reason-code",
"initialized",
"activated",
"too-many-login-failures",
"reset-by-admin",
"changed-by-admin",
"changed-by-user",
"logged-in-with-strong-cred",
"cert-uploaded",
"policy-check-failed",
"renewal",
"reset",
"cert-revoked",
"unlock",
"changed-by-batchjob"
]
}
Loading...