Legacy: Polling Reviewed Documents
Historical note for the removed delivery outbox polling pattern. Use route-based dispatch or n8n webhook delivery instead.
Status
This page is retained only for historical reference.
GET /v1/delivery/outbox is no longer part of the current recommended Numora integration model.
If you are starting a new integration, skip this page and use n8n Outbound Delivery or Delivery Status Callback.
The current product path is route-based:
workflowfor Numora-managed executionn8n executor + webhook notifyfor external orchestration
What To Use Instead
1. Route-Based Dispatch
For reviewed and finalized documents, use POST /v1/documents/{id}/dispatch.
Numora resolves the active delivery route and then:
- dispatches the configured workflow, or
- enqueues an
n8nwebhook delivery and notifies the shared executor
2. Delivery Status Callback
If the downstream write is executed outside Numora, record the result with:
POST /v1/documents/{id}/delivery
3. Document Status
Use GET /v1/documents/{id} as the primary status surface:
reviewedpush_pendingpush_succeededpush_failed
Migration Notes
If you still have any external worker that polls /v1/delivery/outbox, migrate it to the current route-based model:
- Configure the active delivery route inside Numora.
- Use
dispatchto start downstream delivery. - Let Numora notify the shared
n8nwebhook when the active route usesn8n executor. - Use the delivery callback only when the destination write happens outside Numora.