Authentication

Change password

Change the authenticated user's password.

Copy as Markdown Open in ChatGPT Open in Claude

put/v1/authentication/change-password

Request body

emailstring email required
passwordstring password required

The current password.

new_passwordstring password required

The new password.

Example request

{
  "email": "user@example.com",
  "password": "X3$_!456aTa",
  "new_password": "X3$_!456aT"
}

Response

Password changed

statusinteger

HTTP status code, mirrored in the body.

messagestring

Human-readable message; empty on success.

Example response

{
  "status": 200,
  "data": {
    "email": "user@example.com"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.