User
Retrieve password score
Score to allow users to see how strong their password is from 0 (risky password) to 4 (strong password).
post/api/v1/auth/password/score
Request body
Example request
{
"password": "MySecureP@ssw0rd",
"email": "joe.doe@example.com",
"first_name": "Joe",
"last_name": "Doe"
}Response
OK
Example response
{
"score": 2,
"messages": [
"Add another word or two. Uncommon words are better."
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.