POST
Updates the password of the given username with a new password.
This sample changes the admin password to a new given password.
# Request:
curl --location --request POST 'https://trial.dsserver.io/admin/users/admin/password' \
--header 'Authorization: Basic YWRtaW46YWRtaW4=' \
--header 'Content-Type: application/json' \
--data-raw '{
"newPassword": "newpassword"
}'
Type | Value |
---|---|
Admin |
The Admin |
Name | Type | Value | Optional |
---|---|---|---|
new |
String | The new password. Minimum character length is 8. | no |
Status | Description |
---|---|
200 | On success, the HTTP status code in the response header is 200 (OK). |
Status | Description |
---|---|
401 | A 401 (Unauthorized) is returned, if the user is not authorized. |
400 | A 400 (Bad Request) is returned, if the password could not be updated or the password doesn´t fulfil the minimum requirements. Minimum length is 8 characters. |