action api2cart_order_shipment_delete { label: "OrderShipmentDelete" description: "Delete order's shipment." provider: api2cart method: DELETE path: "/order.shipment.delete.json" encoding: json input: { type: "object" properties: { order_id: { type: "string" } shipment_id: { type: "string" } store_id: { type: "string" } } required: ["order_id", "shipment_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { status: { type: "integer" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }