Unify and manage your data

LengthPRule

This rule determines if a password is within a desired length.

This rule determines the desired length of a password.
Note: Minimum and maximum values may be enforced to enhance security and align with security standards such as NIST SP 800-63b and OWASP.
Request
PUT {oauth_uri}/customers/{customerId}/passwordPolicy
Table 1. Parameters
ParameterDescriptionTypeSyntax
min

The numerical value equal to the minimum number of allowed characters for a password.

Number
 "min": 10
maxThe numerical value equal to the maximum number of allowed characters for a password.Number
"max": 64
{
  "passwordRules": [
    {
      "type": ".LengthPRule",
      "min": 10,
      "max": 64
    }
  ]
}