action sendgrid_get_ips_ip_address { label: "Retrieve all IP pools an IP address belongs to" description: "**This endpoint allows you to see which IP pools a particular IP address has been added to.**\n\nThe same IP address can be added to multiple IP pools.\n\nA single IP address or a range of IP addresses may be dedicated to an account in order to send email for multiple domains. The reputation of this IP is based on the aggregate performance of all the senders who use it." provider: sendgrid method: GET path: "/ips/{ip_address}" encoding: json output: { type: "object" required: ["ip", "pools", "rdns", "start_date", "subusers", "warmup", "whitelabeled"] properties: { ip: { type: "string" description: "The IP address." } pools: { type: "array" description: "The list of IP pools that this IP address belongs to." items: { type: "string" } } rdns: { type: "string" description: "The reverse DNS record for this IP address." } start_date: { type: "integer" description: "The date that the IP address was entered into warmup." } subusers: { type: "array" description: "The subusers that can send email using this IP address." items: { type: "string" } } warmup: { type: "boolean" description: "Indicates if this IP address is currently warming up." } whitelabeled: { type: "boolean" description: "Indicates if this IP address is associated with a reverse DNS record." } } } }