Skip to main content
GET
/
suppression-groups
/
{groupId}
curl --request GET \
  --url 'https://api.autosend.com/v1/suppression-groups/AB12C3' \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b4567",
    "groupId": "AB12C3",
    "name": "Marketing Unsubscribes",
    "description": "Users who opted out of marketing",
    "isActive": true,
    "isGlobal": false,
    "suppressionCount": 42,
    "createdAt": "2026-01-10T08:00:00.000Z",
    "updatedAt": "2026-04-15T12:30:00.000Z"
  }
}
curl --request GET \
  --url 'https://api.autosend.com/v1/suppression-groups/AB12C3' \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "60d5ec49f1b2c72d9c8b4567",
    "groupId": "AB12C3",
    "name": "Marketing Unsubscribes",
    "description": "Users who opted out of marketing",
    "isActive": true,
    "isGlobal": false,
    "suppressionCount": 42,
    "createdAt": "2026-01-10T08:00:00.000Z",
    "updatedAt": "2026-04-15T12:30:00.000Z"
  }
}

Authorizations

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

Path Parameters

groupId
string
required
The unique identifier of the suppression group to retrieve.

Response

Suppression group retrieved successfully
success
boolean
Example: true
data
object
The suppression group.