Authentication

Reset password

Reset the user's password using the token received by email.

Copy as Markdown Open in ChatGPT Open in Claude

put/v1/authentication/reset-password

Request body

emailstring email required
tokenstring

Token received by email.

new_passwordstring password required

Example request

{
  "email": "user@example.com",
  "token": "b3ac64d6c55b3ac64d6c55",
  "new_password": "N3w_p4ssw0rd"
}

Response

Password reset

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.