action api2cart_category_count { label: "CategoryCount" description: "Count categories in store." provider: api2cart method: GET path: "/category.count.json" encoding: json input: { type: "object" properties: { avail: { type: "boolean" } created_from: { type: "string" } created_to: { type: "string" } lang_id: { type: "string" } modified_from: { type: "string" } modified_to: { type: "string" } parent_id: { type: "string" } store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { categories_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }