action sendgrid_get_asm_suppressions { label: "Retrieve all suppressions" description: "**This endpoint allows you to retrieve a list of all suppressions.**" provider: sendgrid method: GET path: "/asm/suppressions" encoding: json output: { type: "array" items: { type: "object" required: ["email", "group_id", "group_name", "created_at"] properties: { created_at: { type: "integer" description: "A UNIX timestamp indicating when the suppression was created." } email: { type: "string" description: "The email address that was suppressed." } group_id: { type: "integer" description: "The id of the suppression group that this email address belongs to." } group_name: { type: "string" description: "The name of the suppression group that this email address belongs to." } } } } }