Events & webhooks
SialFlow writes domain events to a transactional outbox (object availability, job progress, and more). Poll GET /v1/events from the portal (Developers → Events) or Governance → Audit, or register HTTP push webhooks with signing, retry, and replay.
Poll outbox
curl "https://api.sialflow.com/v1/events?published=false" \
-H "Authorization: Bearer $SIALFLOW_API_KEY" \
-H "X-SialFlow-Project-ID: $SIALFLOW_PROJECT_ID"Example event shape
{
"id": "evt_01J...",
"type": "media.vod_job.succeeded",
"project_id": "prj_...",
"resource_id": "job_...",
"occurred_at": "2026-07-26T03:12:00Z",
"data": { "profile": "vod_abr_hls_mp4", "progress": 100 }
}