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
Example request
{
"token": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6abcd",
"password": "myNewSecurePassword123"
}Response
Password updated successfully.
object required