Ignore lists
Ignored E.164 numbers are silently dropped from agent workflows. STOP handling can add them automatically.
Pod
Parent
Cell
Parent
Ignore list
This guide
What ignore does
| Direction | When ignored |
|---|---|
| Inbound | Stored with label ignored; no cell.message.received unless you subscribe to cell.message.ignored |
| Outbound | Rejected with 422 IGNORED_RECIPIENT before carrier handoff |
Scope
source is manual, auto_stop, or import. auto_ignore_on_stop writes STOP senders into the enabled scopes.
| Scope | Applies when |
|---|---|
| Pod | ignore_list_enabled on the pod — every cell in the pod |
| Cell | ignore_list_enabled on the cell |
| Effective set | Union of pod + cell entries |
await agentcell.ignoreList.add({ scope: "cell", scopeId: cellId, phoneNumber: "+15559876543" });Common errors
- IGNORED_RECIPIENT
Remove the entry or pick another recipient.
Copy for Cursor / Claude
Enable ignore lists and auto-STOP, then add a number.
agentcell cells settings --cell-id $CELL_ID --ignore-list-enabled --auto-ignore-on-stop
curl -X POST https://api.agentcell.store/v1/cells/$CELL_ID/ignore-list -d '{"phone_number":"+15559876543"}'