action just_eat_delete_v1_tenant_restaurants_id_event_offline { label: "Delete Offline Event" description: "Removes specified restaurant from offline events. If role header is `System` or `Operations` only events created by the specified role will be affected. If role header is `Restaurant` then all events that have `allowRestaurantOverride=true` will be affected." provider: just_eat method: DELETE path: "/v1/{tenant}/restaurants/{id}/event/offline" encoding: json input: { type: "object" properties: { "X-JE-Requester": { type: "string" } "X-JE-User-Role": { type: "string" description: "\n- `System` : Role for an automated process action.\n- `Operations` : Role for an operations user action.\n- `Restaurant` : Role for a restaurant owner/employee user action." enum: ["System", "Operations", "Restaurant"] } id: { type: "string" } tenant: { type: "string" } } required: ["X-JE-Requester", "X-JE-User-Role", "id", "tenant"] additionalProperties: false } output: { type: "object" additionalProperties: true } }