v52

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

Replace sender filters for an inbox

Replaces both sender filter lists atomically. Omitting either list clears that list. Use POST or DELETE for incremental changes.

put/email_inboxes/{inbox_id}/filters

Request body

allowlistInboxFilterEntry[]
blocklistInboxFilterEntry[]

Example request

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

Response

The inbox's current sender allowlist and blocklist.

Example response

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