> ## 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-in Ready

> The dial-in ready webhook

Emitted when a sip\_endpoint associated with the room is ready to receive an inbound call. The event is emitted for each configured sip\_endpoint.

## 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="domain_id" type="string">
  ID of the domain corresponding to this dial-in event.
</ParamField>

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

<ParamField body="sip_endpoint" type="string">
  sip endpoint associated with the room, which is ready to receive call.
</ParamField>

```json theme={null}
{
  "version": "1.0.0",
  "type": "dialin.ready",
  "id": "3602-dial-in-ready-1744186319",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-sip-room",
    "timestamp": "1744186319",
    "sip_endpoint": "sip:my-sip-room.0@daily-23097230720-app.dapp.signalwire.com"
  },
  "event_ts": 1744186319.195
}
```
