action api2cart_cart_meta_data_list { label: "CartMetaDataList" description: "Get entity meta data" provider: api2cart method: GET path: "/cart.meta_data.list.json" encoding: json input: { type: "object" properties: { count: { type: "integer" } entity: { type: "string" } entity_id: { type: "string" } exclude: { type: "string" } key: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } response_fields: { type: "string" } store_id: { type: "string" } } required: ["entity_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" } custom_fields: { type: "object" } id: { type: "string" } key: { type: "string" } namespace: { type: "string" } value: { type: "string" } } } } total_count: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }