action api2cart_customer_attribute_list { label: "CustomerAttributeList" description: "Get attributes for specific customer" provider: api2cart method: GET path: "/customer.attribute.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } customer_id: { type: "string" } exclude: { type: "string" } lang_id: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } response_fields: { type: "string" } store_id: { type: "string" } } required: ["customer_id"] 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" } items: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } attribute_id: { type: "string" } code: { type: "string" } custom_fields: { type: "object" } name: { type: "string" } type: { type: "string" } values: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } custom_fields: { type: "object" } id: { type: "string" } value: { type: "string" } } } } } } } total_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }