action api2cart_customer_group_list { label: "CustomerGroupList" description: "Get list of customers groups." provider: api2cart method: GET path: "/customer.group.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } exclude: { type: "string" } group_ids: { type: "string" } lang_id: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } response_fields: { type: "string" } start: { type: "integer" } store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } pagination: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } next: { type: "string" } previous: { type: "string" } } } result: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } group: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } } } } group_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }