action just_eat_post_orders_tenant_order_id_consumerqueries_lateorder_restaurant { label: "Response to Late Order Update Request" description: "If a customer has requested an update on the status of a late order, a response can be given by calling this endpoint." provider: just_eat method: POST path: "/orders/{tenant}/{orderId}/consumerqueries/lateorder/restaurantresponse" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } additionalDeliveryTimeToAddMinutes: { type: "integer" description: "The amount of time to add to the current delivery estimate in minutes" } lateOrderStatus: { type: "string" description: "The updated later order query status" enum: ["Preparing", "OnItsWay", "Delivered"] } orderId: { type: "string" } tenant: { type: "string" } } required: ["Authorization", "orderId", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }