Skip to content
Console

Overview

AVFlow emits events for job lifecycle changes. On AVFlow Cloud, configure a webhook in the Console to receive them.

EventWhen
job.submittedJob accepted
job.startedProcessing began
job.completedJob finished normally
job.failedJob failed
job.idle_timeoutIdle policy triggered
job.max_duration_reachedMax duration policy triggered
component.errorA component reported an error

Each delivery is a JSON POST:

{
"version": "avflow.events.v1",
"eventId": "evt_…",
"eventType": "job.started",
"eventTime": "2026-06-10T12:00:00Z",
"appId": "app_…",
"job": {
"id": "job_…",
"name": "my-job",
"status": "running"
},
"payload": { }
}

See Webhooks for setup and verification. Use Console Usage for billing details.