Skip to main content
POST
/
v1
/
auth
/
change-password
Change Password
curl --request POST \
  --url https://api.example.com/v1/auth/change-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "current_password": "<string>",
  "new_password": "<string>"
}
'
{}

Body

application/json

Request model for changing password.

current_password
string
required
new_password
string
required
Minimum string length: 8

Response

Successful Response

The response is of type Response Change Password V1 Auth Change Password Post · object.

Last modified on April 21, 2026