Webhook notifications when processing completes

Feature request: webhook support for processing completion events.

Right now with async processing you have to poll for results. With webhooks we could:

  • Get notified immediately when done
  • Trigger downstream workflows automatically
  • Reduce unnecessary API calls

Ideal payload:

{
  "event": "processing.complete",
  "document_id": "abc123",
  "status": "success",
  "result_url": "https://api.qomplement.com/v1/results/abc123"
}

Anyone else want this?

6 Likes

+1 on this. Polling is wasteful and adds latency. Webhooks would make the API much more integration-friendly.

4 Likes

Yes please! We’re building an event-driven pipeline and webhooks would save us a lot of complexity.

4 Likes