action sendgrid_get_access_settings_whitelist_rule_id { label: "Retrieve a specific allowed IP" description: "**This endpoint allows you to retreive a specific IP address that has been allowed to access your account.**\n\nYou must include the ID for the specific IP address you want to retrieve in your call. You can retrieve the IDs associated with your allowed IP addresses using the \"Retrieve a list of currently allowed IPs\" endpoint." provider: sendgrid method: GET path: "/access_settings/whitelist/{rule_id}" encoding: json output: { type: "object" properties: { result: { type: "array" description: "An array listing all of your allowed IPs." items: { type: "object" properties: { created_at: { type: "integer" description: "A Unix timestamp indicating when the IP was added to the allow list." } id: { type: "integer" description: "The ID of the allowed IP." } ip: { type: "string" description: "The allowed IP." } updated_at: { type: "integer" description: "A Unix timestamp indicating when the IPs allow status was most recently updated." } } } } } } }