action api2cart_customer_count { label: "CustomerCount" description: "Get number of customers from store." provider: api2cart method: GET path: "/customer.count.json" encoding: json input: { type: "object" properties: { avail: { type: "boolean" } created_from: { type: "string" } created_to: { type: "string" } customer_list_id: { type: "string" } group_id: { type: "string" } modified_from: { type: "string" } modified_to: { type: "string" } store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { customers_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }