action sendgrid_get_access_settings_whitelist { label: "Retrieve a list of currently allowed IPs" description: "**This endpoint allows you to retrieve a list of IP addresses that are currently allowed to access your account.**\n\nEach IP address returned to you will have `created_at` and `updated_at` dates. Each IP will also be associated with an `id` that can be used to remove the address from your allow list." provider: sendgrid method: GET path: "/access_settings/whitelist" 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." } } } } } } }