Inbound Exports
Why You Would Use This
Section titled “Why You Would Use This”Inbound exports give you a portable record of what happened after providers sent webhooks into HookBridge. You may use exports when you need to investigate an incident with another team, provide audit evidence, or analyze acceptance/retry/rejection patterns outside the console.
Console Workflow
Section titled “Console Workflow”- Open Messages and switch to inbound direction.
- Apply status/endpoint/date filters.
- Click Export CSV.
- Open Exports to monitor progress.
- Download completed files.
If export-ready email notifications are enabled for your deployment/user context, you may also receive an email when the export is complete.
API Workflow
Section titled “API Workflow”API reference:
# Create inbound exportcurl -X POST https://api.hookbridge.io/v1/exports \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "direction": "inbound", "start_time": "2026-02-01T00:00:00Z", "end_time": "2026-02-25T23:59:59Z", "status": "failed_permanent", "inbound_endpoint_id": "YOUR_INBOUND_ENDPOINT_ID" }'
# Downloadcurl -L https://api.hookbridge.io/v1/exports/YOUR_EXPORT_ID/download \ -H "Authorization: Bearer YOUR_API_KEY" \ -o inbound-export.csv Personalize Examples
Enter your credentials to populate code examples throughout the docs.