action beezup_get_channel_catalog_product_by_channel_catalog { label: "Get channel catalog products related to these channel catalogs" provider: beezup method: POST path: "/v2/user/channelCatalogs/products" encoding: json input: { type: "object" required: ["channelCatalogIds", "productId", "storeId"] properties: { channelCatalogIds: { type: "array" description: "The list of channel catalog identifier" items: { type: "string" format: "guid" description: "The channel catalog identifier" } } productId: { type: "string" format: "guid" description: "The product identifier" } storeId: { type: "string" format: "guid" description: "The store identifier" } } } output: { type: "object" properties: { channelCatalogs: { type: "object" description: "The channel catalog product by channel catalog. The key is the channel catalog identifier" } } } }