action beezup_get_channel_categories { label: "Get channel categories" provider: beezup method: GET path: "/v2/user/channels/{channelId}/categories" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "array" items: { type: "string" } } channelId: { type: "string" format: "guid" } } required: ["Accept-Encoding", "channelId"] additionalProperties: false } output: { type: "object" description: "Get channel first level category list" required: ["firstLevelCategories"] properties: { firstLevelCategories: { type: "array" items: { type: "object" description: "The first level category with his sub categories" required: ["channelCategoryId", "channelCategoryName", "channelCategoryLevel"] properties: { channelCategoryChannelCode: { type: "string" description: "The channel category channel code identifier" } channelCategoryColumnOverrides: { type: "object" description: "The channel category column overrides" } channelCategoryDefaultCost: { type: "number" format: "decimal" description: "The default cost on this channel category" } channelCategoryId: { type: "string" format: "guid" } channelCategoryLevel: { type: "integer" format: "int32" description: "The channel category level starting from 1" } channelCategoryName: { type: "string" description: "The channel category name" } subCategories: { type: "array" items: { type: "object" description: "The channel category" required: ["channelCategoryId", "channelCategoryPath", "channelCategoryLevel"] properties: { channelCategoryChannelCode: { type: "string" description: "The channel category channel code identifier" } channelCategoryColumnOverrides: { type: "object" description: "The channel category column overrides" } channelCategoryDefaultCost: { type: "number" format: "decimal" description: "The default cost on this channel category" } channelCategoryId: { type: "string" format: "guid" } channelCategoryLevel: { type: "integer" format: "int32" description: "The channel category level starting from 1" } channelCategoryPath: { type: "array" description: "The channel category path" items: { type: "string" } } } } } } } } } } }