Skip to main content

Validate password for a user

POST 

<your-unleash-url>/api/admin/user-admin/validate-password

Validate the password strength. Minimum 10 characters, uppercase letter, number, special character.

Request

Responses

This response has no body.

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
curl -L '<your-unleash-url>/api/admin/user-admin/validate-password' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"password": "k!5As3HquUrQ",
"oldPassword": "Oldk!5As3HquUrQ",
"confirmPassword": "k!5As3HquUrQ"
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Body required
{
  "password": "k!5As3HquUrQ",
  "oldPassword": "Oldk!5As3HquUrQ",
  "confirmPassword": "k!5As3HquUrQ"
}
ResponseClear

Click the Send API Request button above and see the response here!