POST
/
api
/
auth
/
reset-password
Reset Password
curl --request POST \
  --url https://api.example.com/api/auth/reset-password

Request Body

{
  "token": "abc123resettoken",
  "password": "newSecurePass456"
}
FieldTypeRequiredDescription
tokenstringYesToken from the reset email
passwordstringYesNew password (min 8 characters)

Response

{
  "ok": true
}

Errors

StatusError
400Token and new password required
400Password must be at least 8 characters
400Invalid or expired reset token