Skip to main content

Validates password

POST <your-unleash-url>/auth/reset/validate-password

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Verifies that the password adheres to the Unleash password guidelines

Request

Body

required

validatePasswordSchema

  • password string required

    The password to validate

Responses

This response has no body.

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
Body required
{
"password": "hunter2"
}
curl / cURL
curl -L -X POST '<your-unleash-url>/auth/reset/validate-password' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"password": "hunter2"
}'