action just_eat_post_tenant_orders_order_id_queries_attempteddelivery_resolution { label: "Request Redelivery of the Order" description: "If the customer responds, then you can trigger the redelivery of an order through this endpoint" provider: just_eat method: POST path: "/{tenant}/orders/{orderId}/queries/attempteddelivery/resolution/redeliverorder" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } NewDueDate: { type: "string" format: "date-time" description: "Updated due date for delivery of the order" } Status: { type: "string" description: "The current status of the order" enum: ["driver_at_address", "repreparing"] } orderId: { type: "string" } tenant: { type: "string" } } required: ["Authorization", "orderId", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }