Manage your inbox
Once your trigger inbox is active, you can pause it to temporarily stop collecting events, resume it when you’re ready to continue, update its notification settings, or delete it when you no longer need it. This article covers each operation and explains when to use them. The Python examples on this page use aheaders variable defined once at the top of your script:
Pause an inbox
Pausing stops your inbox from collecting new events. Existing messages already in the queue are preserved and can still be leased while the inbox is paused. Go to Consuming messages to learn how to lease messages. Use pause when:- You need to perform maintenance on your processing service and do not want to build up an overwhelming backlog.
- You want to stop collecting events temporarily without losing the inbox configuration.
status changed to "paused" and paused_reason set to "user".
New events that arrive while the inbox is paused are not queued, they are dropped. If you need to capture all events without interruption, do not pause. Consider leasing with a longer interval instead.
Resume a paused inbox
Resuming restarts event collection. The inbox goes back throughinitializing before becoming active again.
status set to "initializing". Poll until the status is "active" before resuming message processing. Use the same pattern as waiting for inbox initialization.
Handle an inbox paused by Zapier
Zapier may pause your inbox automatically if a problem is detected. When this happens, thepaused_reason field tells you why.
Zapier does not send a separate notification when this happens. You detect an automatic pause from the lease response: the inbox_attributes include the paused_reason, and the lease call returns a 409 once the inbox is paused and fully drained.
Check the paused_reason on a paused inbox:
| Paused reason | What it means | Recommended action |
|---|---|---|
user | You paused the inbox manually | Resume when ready |
authentication | The connected app account credentials are invalid or expired | Reconnect the app account, then resume |
authentication_access_revoked | Access to the connected app was revoked, often because a shared connection was unshared | Reconnect the app account, then resume |
partner_revoked | The app developer or Zapier partner revoked the integration’s access | Contact Zapier support |
subscribe_failed | The trigger subscription could not be established | Delete and recreate the inbox; if it persists, contact Zapier support |
migrate_failed | An internal migration failed | Contact Zapier support |
abandoned | The inbox has not been used for an extended period | Resume if still needed, or delete |
upstream_failures | The connected app is returning errors | Wait and retry; if persistent, check the app’s status page |
unknown | An unclassified error occurred | Contact Zapier support |
Update inbox settings
After creation, only thenotification_url setting can be updated via PATCH. All other subscription settings (app, trigger, connection, inputs) are fixed at creation time. To change them, delete the inbox and create a new one.
To add or update a notification URL:
null:
notification_url is an optional endpoint on your server. When set, Zapier sends a POST request to that URL when new messages arrive, so your service can lease on demand instead of running a continuous polling loop.
The POST body contains only the inbox ID and a message count:
Delete an inbox
Deleting an inbox permanently removes it and cancels the underlying trigger subscription. Use this when you are decommissioning a service, cleaning up test inboxes, or need to change subscription settings that cannot be updated via PATCH.status set to "deleting" and name cleared to null. Deletion is asynchronous. The inbox remains visible in list calls with status: "deleting" until the process completes, which can take several hours. Go to inbox states for an overview of all status transitions.
Once fully deleted, a GET request for that inbox returns 404 Not Found.
Pause vs delete: If you might need the inbox again, pause it. Paused inboxes preserve your configuration and resume faster than creating a new one. Delete only when you are certain you no longer need the inbox.