Klaviyo · Schema

TrackingParamDTO

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
flow object The value of the tracking parameter when applied to a flow.
campaign object The value of the tracking parameter when applied to a campaign.
View JSON Schema on GitHub

JSON Schema

klaviyo-trackingparamdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackingParamDTO",
  "title": "TrackingParamDTO",
  "type": "object",
  "properties": {
    "flow": {
      "description": "The value of the tracking parameter when applied to a flow.",
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/FlowTrackingSettingDynamicParam"
        },
        {
          "$ref": "#/components/schemas/FlowTrackingSettingStaticParam"
        }
      ]
    },
    "campaign": {
      "description": "The value of the tracking parameter when applied to a campaign.",
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/CampaignTrackingSettingDynamicParam"
        },
        {
          "$ref": "#/components/schemas/CampaignTrackingSettingStaticParam"
        }
      ]
    }
  }
}