MyAccount Management
/- Retrieve the Password Complexity Requirements
API versioning
Retrieve a Password
Create a Password
Replace a Password
Delete a Password
Update a Password
Retrieve the Password Com...
OAuth 2.0 scope:
- okta.myAccount.password.read
Retrieves the password complexity requirements for the current user
GET
curl -i -X GET \
https://okta-subdomain.pixtulate.com/idp/myaccount/password/complexity-requirements \
-H 'Accept: application/json; okta-version=1.0.0'Example response
Response
{ "description": "Password requirements: at least 8 characters, a lowercase letter, an uppercase letter, a number, no parts of your username. Your password cannot be any of your last 4 password(s).", "complexity": { "minLength": 8, "minLowerCase": 1, "minUpperCase": 1, "minNumber": 1, "minSymbol": 0, "excludeUsername": true, "excludeAttributes": [] }, "_links": { "self": { … } } }