action api2cart_cart_meta_data_unset { label: "CartMetaDataUnset" description: "Unset meta data for a specific entity" provider: api2cart method: DELETE path: "/cart.meta_data.unset.json" encoding: json input: { type: "object" properties: { entity: { type: "string" } entity_id: { type: "string" } id: { type: "string" } key: { type: "string" } store_id: { type: "string" } } required: ["entity_id", "id", "key"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { status: { type: "boolean" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }