action sendgrid_get_asm_suppressions_email { label: "Retrieve all suppression groups for an email address" description: "**This endpoint returns a list of all groups from which the given email address has been unsubscribed.**" provider: sendgrid method: GET path: "/asm/suppressions/{email}" encoding: json output: { type: "object" required: ["suppressions"] properties: { suppressions: { type: "array" description: "The array of suppression groups." items: { type: "object" required: ["description", "id", "is_default", "name", "suppressed"] properties: { description: { type: "string" description: "The description of the suppression group." } id: { type: "integer" description: "The id of the suppression group." } is_default: { type: "boolean" description: "Indicates if the suppression group is set as the default." } name: { type: "string" description: "The name of the suppression group." } suppressed: { type: "boolean" description: "Indicates if the given email address is suppressed for this group." } } } } } } }