Skip to content

Inbound Exports

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.

  1. Open Messages and switch to inbound direction.
  2. Apply status/endpoint/date filters.
  3. Click Export CSV.
  4. Open Exports to monitor progress.
  5. 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 reference:

Terminal window
# Create inbound export
curl -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"
}'
# Download
curl -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.