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": "AB12C3",
    "name": "Marketing Unsubscribes",
    "description": "Users who opted out of marketing",
    "isActive": true,
    "isGlobal": false
  }
}
curl --request GET \
  --url 'https://api.autosend.com/v1/suppression-groups/AB12C3' \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "AB12C3",
    "name": "Marketing Unsubscribes",
    "description": "Users who opted out of marketing",
    "isActive": true,
    "isGlobal": false
  }
}

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.

Authorizations

Authorization
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.

Example:

"AB12C3"

Response

200 - application/json

The suppression group.

success
boolean
Example:

true

data
object