Notification
Under Review
This article is currently under review. Some content may be incomplete or inaccurate.
Category: Processing
The Notification activity sends a webhook to an external endpoint, typically to announce that a transaction reached a milestone (for example, exported or ready for review) and to provide download links.
Configuration
| Setting | Description | Default |
|---|---|---|
| Webhook URL | Public endpoint that receives the POST. | (required) |
| Triggers | When to fire: reached (execution reaches this node) or failed (workflow aborts before it). | reached |
| Event Name | The event value in the payload (for example transaction.exported). | transaction.step_reached |
| Secret | If set, the body is signed with HMAC-SHA256 in the X-DocAI-Signature header. | (none) |
| Retries / Backoff | Retry count and base delay (doubles each attempt) for failed deliveries. | (defaults) |
| Fail on error | A failed delivery fails the workflow step. | Off |
Notes
- The webhook host must resolve to a public address.
- See the API webhooks reference for payload details.