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

> The dial-out session has warning

Emitted when the dial-out session has warning.

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

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

<ParamField body="destination" type="string">
  phoneNumber (E.194 format) or the sipUri (begins with sip:) being called.
</ParamField>

<ParamField body="caller_id" type="string">
  callerId used for the dial-out
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "dialout.warning",
  "id": "2868-dial-out-warn-7d208e2a-520b-4a8d-a2c9-3a36dfa0d342",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-dialout-room",
    "timestamp": "1728023426",
    "session_id": "7d208e2a-520b-4a8d-a2c9-3a36dfa0d342",
    "destination": "+12098888888",
    "caller_id": "34b0eb2b-4f6d-41e2-8189-c836e830ffbb"
  },
  "event_ts": 1728023426.552
}
```
