action beezup_get_channel_catalog_products_counters { label: "Get channel catalog products' counters" provider: beezup method: GET path: "/v2/user/channelCatalogs/{channelCatalogId}/products/counters" encoding: json input: { type: "object" properties: { channelCatalogId: { type: "string" format: "guid" } } required: ["channelCatalogId"] additionalProperties: false } output: { type: "object" description: "The channel catalog products counters. For each counter you will have a count." properties: { disabledProductCountExcludingUncategorized: { type: "integer" format: "int32" description: "Disabled product count EXCLUDING uncategorized products on existing products." } disabledProductCountIncludingUncategorized: { type: "integer" format: "int32" description: "Disabled product count INCLUDING uncategorized products on existing products." } excludedProductCountExcludingUncategorizedAndDisabled: { type: "integer" format: "int32" description: "Excluded product count EXCLUDING uncategorized products AND disabled products on existing products." } excludedProductCountIncludingUncategorizedAndDisabled: { type: "integer" format: "int32" description: "Excluded product count INCLUDING uncategorized products AND disabled products on existing products." } existingProductCount: { type: "integer" format: "int32" description: "Imported product count currently in your catalog." } uncategorizedProductCount: { type: "integer" format: "int32" description: "Product count WITHOUT category mapped on existing products." } } } }