Unsubscribe from the blog by email

POST/auth/v1/blog/unsubscribe/email

Unsubscribes a recipient using the user id and email from an email-footer link. No authentication required.

Request Body

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

Response Body

204

No Content

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

No Content