GET
/v1/auth/password/policy

Authorization

AuthorizationRequiredBearer <token>

In: header

curl -X GET "https://api.descope.com/v1/auth/password/policy" \
  -H "Authorization: Bearer <token>"

OK

{
  "minLength": 0,
  "lowercase": true,
  "uppercase": true,
  "number": true,
  "nonAlphanumeric": true,
  "strengthScoreEnabled": true,
  "strengthScore": 0
}

Was this helpful?