Klaviyo · Schema

Subscriptions

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
email object The email channel subscription.
sms object The SMS channel subscription.
mobile_push object The mobile push channel subscription.
whatsapp object The whatsapp channel subscription.
View JSON Schema on GitHub

JSON Schema

klaviyo-subscriptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Subscriptions",
  "title": "Subscriptions",
  "type": "object",
  "properties": {
    "email": {
      "description": "The email channel subscription.",
      "$ref": "#/components/schemas/EmailChannel",
      "nullable": true
    },
    "sms": {
      "description": "The SMS channel subscription.",
      "$ref": "#/components/schemas/SMSChannel",
      "nullable": true
    },
    "mobile_push": {
      "description": "The mobile push channel subscription.",
      "$ref": "#/components/schemas/PushChannel",
      "nullable": true
    },
    "whatsapp": {
      "description": "The whatsapp channel subscription.",
      "$ref": "#/components/schemas/WhatsappChannel",
      "nullable": true
    }
  }
}