action api2cart_attribute_count { label: "AttributeCount" description: "Get attributes count" provider: api2cart method: GET path: "/attribute.count.json" encoding: json input: { type: "object" properties: { lang_id: { type: "string" } required: { type: "boolean" } store_id: { type: "string" } system: { type: "boolean" } type: { type: "string" } visible: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { attributes_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }