Skip to main content
curl --request POST \
  --url 'https://api.autosend.com/v1/suppression-groups/emails/unsuppress' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "emails": ["[email protected]"],
    "groupId": "AB12C3"
  }'
{
  "success": true,
  "data": {
    "unsuppressed": 1
  }
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

emails
string[]
An array of email addresses to remove from suppression.
groupId
string
Scopes the removal to a specific suppression group. When omitted, matching entries are removed from all groups.
isGlobal
boolean
When true, removes entries from the global suppression list rather than a project-specific group.