Passwords API
Fetch
GET /auth/identity/passwordPolicy
Response:PasswordPolicyResponse
Security Group:identity  Permissions:read,custom
PasswordPolicyResponse
¶requiredpasswordPolicies PasswordPolicies
PasswordPolicies
¶requireddigits int
The minimum number of numeric digits required in the password string.forceExpiredPasswordChange int
The number of days the password is valid before a new password is required.length int
The minimum number of characters allowed in the password.lowercase int
The minimum number of uppercase characters required in the password string.maxLength int
The maximum number of characters allowed in the password.passwordHistory int
The minimum age of a password in days to allow its reuse.specialChars int
The minimum number of special characters required in the password string.uppercase int
The minimum number of uppercase characters required in the password string.
Update
PUT /auth/identity/passwordPolicy
Request:PasswordPolicyUpdateRequest
Response:void
Security Group:identity  Permissions:add,custom
PasswordPolicyUpdateRequest
¶requiredpasswordPolicies PasswordPoliciesUpdateRequest
PasswordPoliciesUpdateRequest
¶optionaldigits int?
The minimum number of numeric digits required in the password string.forceExpiredPasswordChange int?
The number of days the password is valid before a new password is required.length int?
The minimum number of characters allowed in the password.lowercase int?
The minimum number of uppercase characters required in the password string.maxLength int?
The maximum number of characters allowed in the password.passwordHistory int?
The minimum age of a password in days to allow its reuse.specialChars int?
The minimum number of special characters required in the password string.uppercase int?
The minimum number of uppercase characters required in the password string.
Important
The Update Password Policy endpoint is a PUT
endpoint, which means all the password policy settings will be replaced. If any properties are not included in the update request, the default values will be used.