GET
/v1/auth/password/policy

Get the configured password policy for the project.

See Also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<Project ID:Refresh JWT\>

Try it

/v1/auth/password/policy

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Status codeDescription
200OK
curl -X GET "https://api.descope.com/v1/auth/password/policy"

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

Was this helpful?