action just_eat_put_orders_order_id_duedate { label: "Update order ETA" description: "Use this to update the estimated time of arrival for an order (i.e. when you expect the customer to receive the food). NOTE: An initial estimate is given [upon acceptance](#/paths/~1orders~1{orderId}~1accept/put). This endpoint can be used to update that estimate.\n" provider: just_eat method: PUT path: "/orders/{orderId}/duedate" encoding: json input: { type: "object" properties: { DueDate: { type: "string" format: "date-time" description: "The updated ETA for the order" } orderId: { type: "string" } } required: ["orderId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }