action just_eat_post_order_eligible_for_restaurant_compensation { label: "Order Eligible For Restaurant Compensation" description: "This webhook will be invoked for every cancelled order and it will inform if the order is eligible for compensation.\n" provider: just_eat method: POST path: "/order-eligible-for-restaurant-compensation" encoding: json input: { type: "object" properties: { IsEligible: { type: "boolean" description: "Flag that informs if the cancelled order is eligible for compensation" } OrderId: { type: "string" description: "Id for the order" } } } output: { type: "object" additionalProperties: true } }