action just_eat_put_restaurants_driver_eta { label: "Set ETA for pickup" description: "Set the average amount of time it will take a driver to collect a new order from a restaurant." provider: just_eat method: PUT path: "/restaurants/driver/eta" encoding: json input: { type: "array" items: { type: "object" properties: { etaAtRestaurant: { type: "number" format: "int32" description: "Your best estimation in minutes" } restaurantId: { type: "string" description: "The unique identifier of the restaurant." } } } } output: { type: "object" properties: { ignoredRestaurantIds: { type: "array" description: "A list of restaurant ids that were present in a request but were ignored." items: { type: "string" } } } } }