action sendgrid_get_ips_warmup { label: "Retrieve all IPs currently in warmup" description: "**This endpoint allows you to retrieve all of your IP addresses that are currently warming up.**" provider: sendgrid method: GET path: "/ips/warmup" encoding: json output: { type: "array" items: { type: "object" required: ["ip", "start_date"] properties: { ip: { type: "string" description: "The IP address." } start_date: { type: "integer" description: "A Unix timestamp indicating when the IP address entered warmup mode." } } } } }