action just_eat_put_orders_order_id_cancel { label: "Cancel order" description: "Call when an order has been cancelled by Ops. Cancelling an order overrides any previous accept/reject calls. This should not be used for restaurant rejection but only from Ops involvement" provider: just_eat method: PUT path: "/orders/{orderId}/cancel" encoding: json input: { type: "object" properties: { Message: { type: "string" description: "Reason why this order is being cancelled." } orderId: { type: "string" } } required: ["orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }