action beezup_get_legacy_tracking_channel_catalog { label: "Get the channel catalog configured to use legacy tracking format information" provider: beezup method: GET path: "/v2/user/legacyTracking/channelCatalogs/{channelCatalogId}" encoding: json input: { type: "object" properties: { channelCatalogId: { type: "string" format: "guid" } } required: ["channelCatalogId"] additionalProperties: false } output: { type: "object" description: "The channel catalog" required: ["links"] properties: { links: { type: "object" description: "Indicates the actions you can do on a channel catalog" required: ["self"] properties: { migrate: { type: "object" } self: { type: "object" } } } } } }