v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
Auth

Reset agent password using a reset token.

Validates the password reset token (received via email from POST /auth/password-forgot) and updates the agent's password.

The token is single-use and expires in 1 hour. Guest agents cannot reset their password.

This endpoint is unauthenticated. The reset token acts as proof of identity.

post/auth/password-reset

Request body

tokenstring required

64-character lowercase hexadecimal password reset token. Received via the link in the reset email sent by POST /auth/password-forgot.

passwordstring required

The new password to set for the account. Must be at least 8 characters.

Example request

{
  "token": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6abcd",
  "password": "myNewSecurePassword123"
}

Response

Password updated successfully.

object required