action just_eat_put_restaurant_service_times { label: "Create or update service times" description: "Creates or updates the service times (the weekly times at which a restaurant is in service for delivery or collection) for a restaurant" provider: just_eat method: PUT path: "/restaurants/{tenant}/{restaurantId}/servicetimes" encoding: json input: { type: "object" properties: { restaurantId: { type: "string" } serviceTimes: { type: "object" description: "The desired times at which a restaurant is in service" } tenant: { type: "string" } } required: ["restaurantId", "tenant"] additionalProperties: false } output: { type: "object" properties: { serviceTimes: { type: "object" description: "The desired times at which a restaurant is in service" } } } }