action beezup_get_channel_info { label: "Get channel information" provider: beezup method: GET path: "/v2/user/channels/{channelId}" encoding: json input: { type: "object" properties: { channelId: { type: "string" format: "guid" } } required: ["channelId"] additionalProperties: false } output: { type: "object" required: ["channelId", "channelName"] properties: { beezUPOffer: { type: "string" description: "Indicate the BeezUP offer" } channelDescription: { type: "string" description: "Indicae a description to the channel" } 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" } details: { type: "object" properties: { businessModel: { type: "string" description: "The business model of the channel" } category: { type: "string" description: "The channel category" } channelType: { type: "string" description: "The channel type" } costs: { type: "string" description: "The cost's description of the channel" } homeUrl: { type: "string" format: "uri" description: "The home url of the channel" } subscriptionLink: { type: "string" description: "The subscription link to the channel" } trackingType: { type: "string" description: "The tracking type" } } } keyNumbers: { type: "object" properties: { categories: { type: "string" description: "The estimated category count of the channel" } products: { type: "string" description: "The estimated product count of the channel" } stores: { type: "string" description: "The estimated store count of the channel" } viewsPerMonth: { type: "string" description: "The estimated view count per month of the channel" } } } salesContact: { type: "object" properties: { email: { type: "string" format: "email" description: "Indicate the sales contact email" } name: { type: "string" description: "Indicate the BeezUP offer" } phoneNumber: { type: "string" description: "The sales contact phone number" } } } technicalContact: { type: "object" properties: { email: { type: "string" description: "The technical contact email" } name: { type: "string" description: "The technical contact name" } phoneNumber: { type: "string" description: "The technical contact phone number" } } } } } }