Events API
Base path /v1/events. All requests require Authorization and X-SialFlow-Project-ID.
Transactional outbox for domain events. Poll or subscribe via webhooks for integrations.
| Method | Path | Description |
|---|---|---|
| GET | / | List outbox events |
| GET | /{id} | Get event |
| POST | /webhooks | Register push webhook |
| POST | /webhooks/{id}/replay | Replay delivery |
Example
curl "https://api.sialflow.com/v1/events?type=media.vod_job.succeeded" \
-H "Authorization: Bearer $SIALFLOW_API_KEY" \
-H "X-SialFlow-Project-ID: $SIALFLOW_PROJECT_ID"