action sendgrid_get_mail_settings_forward_bounce { label: "Retrieve forward bounce mail settings" description: "**This endpoint allows you to retrieve your current bounce forwarding mail settings.**\n\nEnabling the Forward Bounce setting allows you to specify `email` addresses to which bounce reports will be forwarded. This endpoint returns the email address you have set to receive forwarded bounces and an `enabled` status indicating if the setting is active." provider: sendgrid method: GET path: "/mail_settings/forward_bounce" encoding: json output: { type: "object" properties: { email: { type: "string" description: "The email address that you would like your bounce reports forwarded to." } enabled: { type: "boolean" description: "Indicates if the bounce forwarding mail setting is enabled." } } } }