Profile

Change Password

Changes the currently logged-in user's password.

post/v1/auth/me/change-password

Request body

current_passwordstring required
new_passwordstring required

Example request

{
  "current_password": "OldSecretPassword123!",
  "new_password": "NewSecretPassword123!"
}

Response

Password changed successfully

messagestring required

Example response

{
  "message": "password changed successfully"
}

Changes

Changed in 2 of the 18 revisions of this API.3