action api2cart_cart_meta_data_set { label: "CartMetaDataSet" description: "Set meta data for a specific entity" provider: api2cart method: POST path: "/cart.meta_data.set.json" encoding: json input: { type: "object" properties: { entity: { type: "string" } entity_id: { type: "string" } key: { type: "string" } namespace: { type: "string" } store_id: { type: "string" } value: { type: "string" } } required: ["entity_id", "key", "namespace", "value"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }