> ## Documentation Index
> Fetch the complete documentation index at: https://docs.daily.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Streaming Error

> The streaming error webhook event

A streaming error event emits when an error occurred when starting or during a live stream. You might still receive other streaming events, depending on when the error has occurred during the streaming lifecycle.

## Common fields

<ParamField body="version" type="string">
  Represents the version of the event. Uses semantic versioning to inform a consumer if the payload has introduced any breaking changes.
</ParamField>

<ParamField body="type" type="string">
  Represents the type of the event described in the payload.
</ParamField>

<ParamField body="id" type="string">
  An identifier representing this specific event.
</ParamField>

<ParamField body="payload" type="object">
  An object representing the event, whose fields are described below.
</ParamField>

<ParamField body="event_ts" type="number">
  Documenting when the webhook itself was sent. This timestamp is different than the time of the event the webhook describes.
</ParamField>

## Payload

<ParamField body="timestamp" type="integer">
  The Unix epoch time in seconds representing when streaming error occurred.
</ParamField>

<ParamField body="instance_id" type="string">
  The streaming instance ID.
</ParamField>

<ParamField body="error_message" type="string">
  The error message returned.
</ParamField>

<ParamField body="room_name" type="string">
  The name of the room where streaming error occurred.
</ParamField>

<ParamField body="domain_id" type="string">
  ID of the domain for which streaming error occurred.
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "streaming.error",
  "id": "str-err-c3df927c-f738-4471-a2b7-066fa7e95a6b-1692124183",
  "payload": {
    "timestamp": 1692124183,
    "instance_id": "c3df927c-f738-4471-a2b7-066fa7e95a6b",
    "error_message": "rtmp-error: Failed to connect: 'publish' cmd failed: connection closed remotely",
    "room_name": "iM5wNQvwtK4980eP049T",
    "domain_id": "96df0296-b344-4abb-8b78-82df35cc58f4"
  },
  "event_ts": 1692124183
}
```
