Change Password
Allows the currently authenticated user to change their password.
POST
/api/v1/users/me/password
curl \
--request POST 'http://api.example.com/api/v1/users/me/password' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"current_password":"string","new_password":"string"}'
Request examples
{
"current_password": "string",
"new_password": "string"
}
Response examples (200)
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Response examples (400)
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Response examples (401)
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}