action beezup_get_available_channels { label: "List all available channel for this store" provider: beezup method: GET path: "/v2/user/channels/" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "The available channel" required: ["channelId", "channelName", "channelLogoUrl", "links", "types"] properties: { channelId: { type: "string" format: "guid" description: "The channel identifier" } channelLogoUrl: { type: "string" description: "The URL https://en.wikipedia.org/wiki/URL" } channelName: { type: "string" description: "The channel name" } links: { type: "object" description: "The links related to an available channel" properties: { self: { type: "object" } } } types: { type: "array" description: "The type list related to a channel" items: { type: "string" } } } } } }