action sendgrid_get_mail_settings_address_whitelist { label: "Retrieve address whitelist mail settings" description: "**This endpoint allows you to retrieve your current email address whitelist settings.**\n\nThe Address Whitelist setting allows you to specify email addresses or domains for which mail should never be suppressed.\n\nFor example, if you own the domain `example.com`, and one or more of your recipients use `email@example.com` addresses, placing `example.com` in the address whitelist setting instructs Twilio SendGrid to ignore all bounces, blocks, and unsubscribes logged for that domain. In other words, all bounces, blocks, and unsubscribes will still be sent to `example.com` as if they were sent under normal sending conditions." provider: sendgrid method: GET path: "/mail_settings/address_whitelist" encoding: json output: { type: "object" properties: { enabled: { type: "boolean" description: "Indicates if you have an email address whitelist enabled. " } list: { type: "array" description: "All email addresses that are currently on the whitelist." items: { type: "string" } } } } }