action beezup_get_channels { label: "The channel list for one country" provider: beezup method: GET path: "/v2/public/channels/{countryIsoCode}" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "array" items: { type: "string" } } "If-None-Match": { type: "string" } countryIsoCode: { type: "string" } } required: ["Accept-Encoding", "countryIsoCode"] additionalProperties: false } output: { type: "object" properties: { channels: { type: "array" items: { type: "object" required: ["name", "homeUrl", "logoUrl", "types"] properties: { homeUrl: { type: "string" format: "uri" description: "The channel home url" } logoUrl: { type: "string" format: "uri" description: "The channel logo url" } name: { type: "string" description: "The channel name" } sectors: { type: "array" description: "The sector list related to a channel" items: { type: "string" } } types: { type: "array" description: "The type list related to a channel" items: { type: "string" } } } } } links: { type: "object" properties: { self: { type: "object" } } } } } }