action just_eat_post_tenant_orders_order_id_queries_attempteddelivery { label: "Delivery Attempt Failed" description: "If the customer hasn't answered the door to collect the order, then an attempted delivery event can be created using this endpoint." provider: just_eat method: POST path: "/{tenant}/orders/{orderId}/queries/attempteddelivery" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } ReasonCode: { type: "string" description: "The reason the attempted delivery event was created" enum: ["problem_with_address", "no_answer"] } orderId: { type: "string" } tenant: { type: "string" } } required: ["Authorization", "orderId", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }