Contents of password_complexity_options object?

password_complexity_options is listed in the docs in several places, but I don’t see anywhere that defines what it contains or possible options.

Docs: Auth0 Management API v2

{
  "options": {
    ...
    "password_complexity_options": "object",
    ...
  }
}

Hi @jim.pruetting,

I believe the only option available for password_policy_options is password length. Here’s a connection I created where I changed the min password length to 10 characters:

      "passwordPolicy": "excellent",
      "password_dictionary": {
        "enable": true
      },
      "password_no_personal_info": {
        "enable": true
      },
      "password_complexity_options": {
        "min_length": 10
      }

All other password policy options are determined by the passwordPolicy attribute, set by the slider in the connection configuration.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.