action beezup_get_channel_catalog_marketplace_settings { label: "Get the marketplace settings for a channel catalog" provider: beezup method: GET path: "/v2/user/marketplaces/channelcatalogs/{channelCatalogId}/settings" encoding: json input: { type: "object" properties: { channelCatalogId: { type: "string" format: "guid" } } required: ["channelCatalogId"] additionalProperties: false } output: { type: "object" description: "The channel catalog marketplace settings" required: ["links", "settings"] properties: { links: { type: "object" required: ["save", "self"] properties: { save: { type: "object" } self: { type: "object" } } } settings: { type: "array" items: { type: "object" description: "Model for fetching a channel catalog marketplace setting" required: ["name", "discriminatorType"] properties: { discriminatorType: { type: "string" enum: ["channelCatalogMarketplaceStringSetting", "channelCatalogMarketplaceIntegerSetting", "channelCatalogMarketplaceBooleanSetting", "channelCatalogMarketplaceNumberSetting"] } name: { type: "string" description: "Channel catalog marketplace property name" } } } } } } }