action api2cart_attribute_attributeset_list { label: "AttributeAttributesetList" description: "Get attribute_set list" provider: api2cart method: GET path: "/attribute.attributeset.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } exclude: { type: "string" } params: { type: "string" } response_fields: { type: "string" } start: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } assigned_attribute_ids: { type: "array" items: { type: "string" } } attribute_set_id: { type: "string" } custom_fields: { type: "object" } id: { type: "string" } name: { type: "string" } position: { type: "integer" } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }