GET
/v1/auth/password/policy

Authorization

Descope Project ID
AuthorizationBearer <token>

Project ID as bearer token.

In: header

Get the configured password policy for the project.

See Also

curl -X GET "https://api.descope.com/v1/auth/password/policy"
{  "minLength": 0,  "lowercase": true,  "uppercase": true,  "number": true,  "nonAlphanumeric": true,  "strengthScoreEnabled": true,  "strengthScore": 0}
export interface Response {minLength?: numberlowercase?: booleanuppercase?: booleannumber?: booleannonAlphanumeric?: booleanstrengthScoreEnabled?: booleanstrengthScore?: number}
Was this helpful?