action sendgrid_get_ips_warmup_ip_address { label: "Retrieve the warmup status for a specific IP address" description: "**This endpoint allows you to retrieve the warmup status for a specific IP address.**\n\nYou can retrieve all of your warming IPs using the \"Retrieve all IPs currently in warmup\" endpoint." provider: sendgrid method: GET path: "/ips/warmup/{ip_address}" 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." } } } } }