action just_eat_get_delivery_pools_delivery_pool_id { label: "Get an individual delivery pool" description: "A delivery pool is a named group of drivers which deliver food for a set of restaurants." provider: just_eat method: GET path: "/delivery/pools/{deliveryPoolId}" encoding: json 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" } } } } }