Send a password reset email

POST/auth/v1/password/reset

Sends a password reset email containing a reset token to the given email address.

Request Body

required
application/json
{
  "$ref": "#/components/schemas/internal_auth.emailBody",
  "$ref-value": {
    "properties": {
      "email": {
        "type": "string"
      }
    },
    "required": [
      "email"
    ],
    "type": "object"
  }
}

Response Body

204

No Content

curl -X POST "https://api.rixl.com/auth/v1/password/reset" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "string"
  }'

No Content