SendLit logoSendLit Docs
API ReferenceSuppressions

List the team's suppressed recipients

GET
/suppressions
x-sendlit-apikey<token>

In: header

Query Parameters

active?|
reason?string
Value in"hard_bounce" | "complaint" | "repeated_soft_bounce" | "provider_suppression" | "manual"
offset?integer
Range1 <= value
itemsPerPage?integer
Range1 <= value

Response Body

application/json

curl -X GET "https://api.sendlit.dev/suppressions"
{
  "items": [
    {
      "suppressionId": "string",
      "recipientEmail": "string",
      "reason": "hard_bounce",
      "active": true,
      "firstSuppressedAt": "string",
      "lastSuppressedAt": "string",
      "releasedAt": "string",
      "releaseReason": "string"
    }
  ],
  "total": 0
}