Skip to main content

Reset user password

POST <your-unleash-url>/api/admin/user-admin/reset-password

Authorization

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

Reset user password as an admin

Request

Body

required

idSchema

  • id string required

    User email

Responses

resetPasswordSchema

Schema
  • resetPasswordUrl uri required

    A URL pointing to a location where the user can reset their password

Authorization

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

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
Body required
{
"id": "user@example.com"
}
curl / cURL
curl -L -X POST '<your-unleash-url>/api/admin/user-admin/reset-password' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"id": "user@example.com"
}'