Klaviyo · Schema

UnsubscriptionParameters

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
consent string The Consent status to be set as part of the unsubscribe call. Currently supports "UNSUBSCRIBED".
View JSON Schema on GitHub

JSON Schema

klaviyo-unsubscriptionparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UnsubscriptionParameters",
  "title": "UnsubscriptionParameters",
  "type": "object",
  "properties": {
    "consent": {
      "description": "The Consent status to be set as part of the unsubscribe call. Currently supports \"UNSUBSCRIBED\".",
      "type": "string",
      "example": "UNSUBSCRIBED",
      "enum": [
        "UNSUBSCRIBED"
      ]
    }
  },
  "required": [
    "consent"
  ]
}