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