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. |
| name | string | The name of the custom tracking parameter |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomTrackingParamDTO",
"title": "CustomTrackingParamDTO",
"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"
}
]
},
"name": {
"description": "The name of the custom tracking parameter",
"type": "string"
}
},
"required": [
"name"
]
}