action api2cart_customer_group_add { label: "CustomerGroupAdd" description: "Create customer group." provider: api2cart method: POST path: "/customer.group.add.json" encoding: json input: { type: "object" properties: { name: { type: "string" } store_id: { type: "string" } stores_ids: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }