action beezup_catalog_get_categories { label: "Get category list" provider: beezup method: GET path: "/v2/user/catalogs/{storeId}/categories" encoding: json input: { type: "object" properties: { "Accept-Encoding": { type: "array" items: { type: "string" } } storeId: { type: "string" format: "guid" } } required: ["Accept-Encoding", "storeId"] additionalProperties: false } output: { type: "object" description: "The object which contains the category list" required: ["categories"] properties: { categories: { type: "array" description: "The category list" items: { description: "The catalog category" required: ["categoryPath", "totalProductCount", "selfProductCount"] properties: { categoryId: { type: "string" format: "guid" description: "The catalog category identifier" } categoryPath: { type: "array" description: "The catalog category path" items: { type: "string" } } selfProductCount: { type: "integer" format: "int32" description: "The product count related to this category" } totalProductCount: { type: "integer" format: "int32" description: "The total product count related to this category and his sub categories" } } } } } } }