> ## 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.

# Dial-out error

> The dial-out has an error

Emitted when the dial-out session encounters an error when connecting to a call.

## 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 this event occurred.
</ParamField>

<ParamField body="session_id" type="string">
  The sessionId of the dial-out session.
</ParamField>

<ParamField body="user_id" type="string">
  The userId of the dial-out session (if supplied during the API call).
</ParamField>

<ParamField body="domain_id" type="string">
  ID of the domain for which dial-out has error.
</ParamField>

<ParamField body="room" type="string">
  The name of the room where dial-out has error.
</ParamField>

<ParamField body="error_msg" type="string">
  message describing the error
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "dialout.error",
  "id": "2868-dial-out-err-22b32b65-cd65-42b2-9665-db05ef3e1255",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-dialout-room",
    "timestamp": "1728025068",
    "session_id": "22b32b65-cd65-42b2-9665-db05ef3e1255",
    "user_id": null,
    "error_msg": "DialOut failed with error: process error, Channel closed)."
  },
  "event_ts": 1728025068.748
}
```
