action sendgrid_get_asm_suppressions_global_email { label: "Retrieve a Global Suppression" description: "**This endpoint allows you to retrieve a global suppression. You can also use this endpoint to confirm if an email address is already globally suppresed.**\n\nIf the email address you include in the URL path parameter `{email}` is already globally suppressed, the response will include that email address. If the address you enter for `{email}` is not globally suppressed, an empty JSON object `{}` will be returned." provider: sendgrid method: GET path: "/asm/suppressions/global/{email}" encoding: json output: { type: "object" required: ["recipient_email"] properties: { recipient_email: { type: "string" format: "email" description: "The email address that is globally suppressed. This will be an empty object if the email address you included in your call is not globally suppressed." } } } }