Skip to main content
A streaming started event emits when Daily begins to stream a call. These can be activated via startLiveStreaming() or via the REST API.

Common fields

version
string
Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
type
string
Represents the type of the event described in the payload.
id
string
An identifier representing this specific event.
payload
object
An object representing the event, whose fields are described below.
event_ts
number
Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.

Payload

timestamp
integer
The Unix epoch time in seconds representing when streaming was started.
instance_id
string
The streaming instance ID.
domain_id
string
ID of the domain for which streaming was started.
layout
object
The layout used for streaming.
{
  "version": "1.0.0",
  "type": "streaming.started",
  "id": "str-sta-c3df927c-f738-4471-a2b7-066fa7e95a6b-1692124183",
  "payload": {
    "timestamp": 1692124183,
    "instance_id": "c3df927c-f738-4471-a2b7-066fa7e95a6b",
    "domain_id": "96df0296-b344-4abb-8b78-82df35cc58f4",
    "layout": {
      "preset": "active-participant"
    }
  },
  "event_ts": 1692124183
}