action sendgrid_get_asm_groups { label: "Retrieve all suppression groups associated with the user." description: "**This endpoint allows you to retrieve a list of all suppression groups created by this user.**\n\nThis endpoint can also return information for multiple group IDs that you include in your request. To add a group ID to your request, simply append `?id=123456&id=123456`, with the appropriate group IDs." provider: sendgrid method: GET path: "/asm/groups" encoding: json input: { type: "object" properties: { id: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name", "description"] properties: { description: { type: "string" description: "A description of the suppression group." } id: { type: "number" description: "The id of the suppression group." } is_default: { type: "boolean" description: "Indicates if this is the default suppression group." } last_email_sent_at: { type: "object" } name: { type: "string" description: "The name of the suppression group. Each group created by a user must have a unique name." } unsubscribes: { type: "integer" description: "The unsubscribes associated with this group." } } } } }