action cloud_elements_delete_order_by_id { label: "Delete an order associated with a given ID from your eCommerce system. Specifying an order associated with a given ID that does not exist will result in an error message" provider: cloud_elements method: DELETE path: "/orders/{id}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } id: { type: "string" } } required: ["Authorization", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }