action sendgrid_get_ips_pools_pool_name { label: "Retrieve all the IPs in a specified pool" description: "**This endpoint allows you to get all of the IP addresses that are in a specific IP pool.**" provider: sendgrid method: GET path: "/ips/pools/{pool_name}" encoding: json output: { type: "object" properties: { ips: { type: "array" description: "The IP addresses that belong to this pool." items: { type: "string" } } pool_name: { type: "string" description: "The name of the IP pool." } } } }