Skip to main content

Reset password

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

Authorization

name: Authorizationtype: apiKeyin: header

Requests a password reset email for the user. This email can be used to reset the password for a user that has forgotten their password

Request

Body

required

emailSchema

  • email string required

    The email address

Responses

This response has no body.

Authorization

name: Authorizationtype: apiKeyin: header

Request

Base URL
<your-unleash-url>
apiKey
Body required
{
"email": "test@example.com"
}
curl / cURL
curl -L -X POST '<your-unleash-url>/auth/reset/password-email' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"email": "test@example.com"
}'