POST
/
auth
/
reset-password
Reset Password
curl --request POST \
  --url https://{deploymentHost}/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "reset_token_abc123def456",
  "password": "NewSecurePass123!"
}'
{
"status": 200,
"message": "",
"data": {
"message": "Password has been reset successfully. You can now sign in with your new password."
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Password reset completed successfully

The response is of type object.