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?