action just_eat_patch_delivery_pools_delivery_pool_id { label: "Modify a delivery pool" description: "Modify a delivery pool, changing its name, restaurants or both" provider: just_eat method: PATCH path: "/delivery/pools/{deliveryPoolId}" encoding: json input: { 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" } } } } 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" } } } } }