action just_eat_put_restaurant_online_status { label: "Restaurant Online Status" description: "Callback to notify that a restaurant is now able to come back online as there are no longer any active offline Restaurant Events" provider: just_eat method: PUT path: "/restaurant-online-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 } }