v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Email Inboxes

Add sender filter entries to an inbox

Adds entries to either the allowlist or blocklist. The operation is an idempotent set union: entries already present remain unchanged.

post/email_inboxes/{inbox_id}/filters

Request body

entriesInboxFilterEntry[] required
type'allowlist' | 'blocklist' required

The list to change.

Example request

{
  "entries": [
    "@example.com"
  ]
}

Response

The inbox's current sender allowlist and blocklist.

Example response

{
  "data": {
    "allowlist": [
      "@example.com"
    ],
    "blocklist": [
      "@example.com"
    ]
  }
}