Klaviyo · Schema

CampaignTrackingSettingDynamicParam

MarketingEmailSMSCustomer DataE-CommerceAutomation

Properties

Name Type Description
type string The type of the tracking parameter
value string The value of the tracking parameter
View JSON Schema on GitHub

JSON Schema

klaviyo-campaigntrackingsettingdynamicparam-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CampaignTrackingSettingDynamicParam",
  "title": "CampaignTrackingSettingDynamicParam",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of the tracking parameter",
      "type": "string",
      "enum": [
        "dynamic"
      ]
    },
    "value": {
      "description": "The value of the tracking parameter",
      "type": "string",
      "enum": [
        "campaign_id",
        "campaign_name",
        "campaign_name_id",
        "campaign_name_send_day",
        "email_subject",
        "group_id",
        "group_name",
        "group_name_id",
        "link_alt_text",
        "message_type",
        "profile_external_id",
        "profile_id"
      ]
    }
  },
  "required": [
    "type",
    "value"
  ]
}