action just_eat_put_delivery_pools_delivery_pool_id { label: "Replace an existing delivery pool" description: "Replace an existing delivery pool changing all of its properties" provider: just_eat method: PUT path: "/delivery/pools/{deliveryPoolId}" encoding: json input: { type: "object" required: ["name"] properties: { name: { type: "string" description: "The name of the pool, used by operations teams, in reports, etc." } restaurants: { type: "array" description: "A list of Just Eat restaurant ids served by the delivery pool." items: { type: "number" format: "int32" } } } } output: { type: "object" properties: { name: { type: "string" description: "The name of the pool, used by operations teams, in reports, etc." } restaurants: { type: "array" description: "A list of Just Eat restaurant ids served by the delivery pool." items: { type: "number" format: "int32" } } } } }