Create a key to copy examples filled with your team.
Email suppressions
Addresses PostShiba will not send to.
A suppression is an address PostShiba will not send to. Rows are unique per team and tenant. Plus tags collapse to the same address, so user+promo@dest.test matches user@dest.test.
Reasons
| reason | How it got there |
|---|---|
bounce |
Hard bounce on that recipient. |
spamreport |
Kumo Feedback for that recipient. |
manual |
You added the address in the dashboard or API. |
REST send checks the list before inject. A hit returns 403 {error: suppressed}. Kumo rejects the same address later with 550 suppressed if it still gets that far.
API
GET /api/v1/teams/:team_id/suppressionslists rows.POST /api/v1/teams/:team_id/suppressionsadds one. Reason is alwaysmanual. Optionaltenant_iddefaults to the team's default tenant.DELETE /api/v1/suppressions/:idremoves a row.
suppression.json
1
{
2
"suppression": {
3
"email": "blocked@example.com",
4
"tenant_id": 12
5
}
6
}