action just_eat_put_delivery_failed { label: "Delivery Attempt Failed" description: "This webhook will be invoked whenever an attempted delivery event is created from the device." provider: just_eat method: PUT path: "/delivery-failed" encoding: json input: { type: "object" properties: { OrderId: { type: "string" description: "The id of the order" } Reason: { type: "string" description: "The reason for creating the attempted delivery" } RestaurantId: { type: "number" description: "The id of the restaurant" } Tenant: { type: "string" description: "The tenant associated with the order" } } } output: { type: "object" additionalProperties: true } }