Change your own password
POST<your-unleash-url>/api/admin/user/change-password
Requires specifying old password and confirming new password
Request
Responses
- 200
- 400
- 401
This response has no body.
Old and new password do not match
Old password is incorrect or user is not authenticated
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/user/change-password' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"password": "k!5As3HquUrQ",
"oldPassword": "Oldk!5As3HquUrQ",
"confirmPassword": "k!5As3HquUrQ"
}'
ResponseClear