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: Management API Reference - Auth0 Docs
{
"options": {
...
"password_complexity_options": "object",
...
}
}
markd
February 9, 2019, 2:41am
2
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
system
Closed
August 29, 2019, 10:45am
3
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.