Klaviyo · Schema

UnsubscriptionChannels

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
email object The subscription parameters to unsubscribe from the "EMAIL" Channel.
sms object The subscription parameters to unsubscribe from the "SMS" Channel.
whatsapp object The subscription parameters to unsubscribe from the "WhatsApp" Channel.
push object The subscription parameters to unsubscribe from the "Push" Channel.
View JSON Schema on GitHub

JSON Schema

klaviyo-unsubscriptionchannels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UnsubscriptionChannels",
  "title": "UnsubscriptionChannels",
  "type": "object",
  "properties": {
    "email": {
      "description": "The subscription parameters to unsubscribe from the \"EMAIL\" Channel.",
      "$ref": "#/components/schemas/EmailUnsubscriptionParameters",
      "nullable": true
    },
    "sms": {
      "description": "The subscription parameters to unsubscribe from the \"SMS\" Channel.",
      "$ref": "#/components/schemas/SMSUnsubscriptionParameters",
      "nullable": true
    },
    "whatsapp": {
      "description": "The subscription parameters to unsubscribe from the \"WhatsApp\" Channel.",
      "$ref": "#/components/schemas/WhatsAppUnsubscriptionParameters",
      "nullable": true
    },
    "push": {
      "description": "The subscription parameters to unsubscribe from the \"Push\" Channel.",
      "$ref": "#/components/schemas/PushUnsubscriptionParameters",
      "nullable": true
    }
  }
}