Email Inboxes
Remove sender filter entries from an inbox
Removes entries from either the allowlist or blocklist. The operation is idempotent: removing an entry that is not present still returns the current filter lists.
delete/email_inboxes/{inbox_id}/filters
Request body
Example request
{
"entries": [
"@example.com"
]
}Response
The inbox's current sender allowlist and blocklist.
Example response
{
"data": {
"allowlist": [
"@example.com"
],
"blocklist": [
"@example.com"
]
}
}