Get Suppression Lists
GET/suppression
Retrieves a list of all suppression lists in your account
Use this endpoint to view details of each suppression list, including names, and the number of suppressed customer email addresses, helping you manage and monitor opt-outs effectively.
Request
Responses
- 200
- 400
- 401
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
suppressions object[]
id int64
name string
type string
Possible values: [EMAIL, MD5, SHA256]
scope string
Possible values: [LOCAL, GLOBAL]
fileProcessStatus string
Possible values: [UPLOADED, IN_PROGRESS, COMPLETED, FAILURE]
numberOfMembers int64
Total number of suppressed email addresses
{
"suppressions": [
{
"id": 1,
"name": "Suppression List 1",
"type": "EMAIL",
"scope": "LOCAL",
"fileProcessStatus": "COMPLETED",
"numberOfMembers": 100
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
Loading...