curl --request GET \
--url https://api.lettermint.co/v1/suppressions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "email",
"value": "<string>",
"reason": "spam_complaint",
"scope": "global",
"project_id": "<string>",
"route_id": "<string>",
"suppressed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"path": "<string>",
"per_page": 123,
"next_cursor": "<string>",
"next_page_url": "<string>",
"prev_cursor": "<string>",
"prev_page_url": "<string>"
}curl --request GET \
--url https://api.lettermint.co/v1/suppressions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "email",
"value": "<string>",
"reason": "spam_complaint",
"scope": "global",
"project_id": "<string>",
"route_id": "<string>",
"suppressed_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"path": "<string>",
"per_page": 123,
"next_cursor": "<string>",
"next_page_url": "<string>",
"prev_cursor": "<string>",
"prev_page_url": "<string>"
}Team API token. Find this in your team settings.
Available sorts are value, created_at, reason. You can sort by multiple options by separating them with a comma. To sort in descending order, use - sign in front of the sort, for example: -value.
The number of results that will be returned per page.
The cursor to start the pagination from.
Filter by scope (team, project, route)
Filter by route ID
Filter by project ID
Search by email/domain value (partial match)
spam_complaint, hard_bounce, unsubscribe, manual Paginated set of SuppressedRecipientData
Show child attributes
email, domain, extension spam_complaint, hard_bounce, unsubscribe, manual global, team, project, route Base path for paginator generated URLs.
Number of items shown per page.
The "cursor" that points to the next set of items.
The "cursor" that points to the previous set of items.