action just_eat_put_restaurant_offline_status { label: "Restaurant Offline Status" description: "Callback to notify that a restaurant has been taken offline through an active Restaurant Event or there's been a change in whether the restaurant can override a previous offline status." provider: just_eat method: PUT path: "/restaurant-offline-status" encoding: json input: { type: "object" properties: { AllowRestaurantOverride: { type: "boolean" description: "Whether a restaurant should be allowed to reverse this offline status change through calls to the Restaurant Events endpoints." } IsOffline: { type: "boolean" description: "Represents the current offline status of the restaurant." } RestaurantId: { type: "string" description: "The unique identifier of the restaurant that has their offline status changed." } Tenant: { type: "string" format: "enum" description: "The two letter country code for the market in which the restaurant operates." enum: ["au", "dk", "es", "ie", "it", "no", "uk", "nz"] } } } output: { type: "object" additionalProperties: true } }