# Remove a block list entry

> Unblock one company or mailbox by the id the list returns.

Canonical: https://revnu.com/docs/blocklist-remove

```bash
curl -X DELETE -H "Authorization: Bearer $REVNU_API_TOKEN" https://revnu.com/api/v1/blocklist/j57…
```

## Response

`{ "removed": entry }`. `404` for an unknown or another account's id.

## Frequently asked questions

### Is this safe to automate?

Treat it as a deliberate action. A wrong block loses one lead; a wrong unblock can email a customer's customer. The agent cannot remove entries at all, only your dashboard, this endpoint and an admin can.

### Which scope does this need?

`leads:write`. A token without it gets `403` with `requiredScope` in the body. `GET /me` shows a token's scopes.

### Are responses cached?

No. Every response is `Cache-Control: no-store`, so what you read is current.
