Skip to main content
Emitted when the session when the remote end calls (via SIP or PSTN) and the connection is established with Daily’s Room. If a user is present in the Daily Room, the call will be directly connected and voice should flow between the PSTN phone number and the Daily Room.

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 this event occurred.
session_id
string
The sessionId of the dial-in session.
sip_from
string
sip address of the incoming call.
domain_id
string
ID of the domain corresponding to this dial-in event.
room
string
The name of the room where dial-in event occurred.
display_name
string
name displayed for the incoming user.
sip_headers
object
sip header and header values in the incoming sip invite.
{
  "version": "1.0.0",
  "type": "dialin.connected",
  "id": "2868-dial-in-con-ff1e7130-7752-4304-9cf4-08d2583a41dc",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-dialin-room",
    "timestamp": "1728036610",
    "session_id": "ff1e7130-7752-4304-9cf4-08d2583a41dc",
    "sip_from": "sip:myuser@mysip.sip.twilio.com",
    "sip_headers": {
      "X-New-Hdr": "myhdr"
    },
    "display_name": "sip-user"
  },
  "event_ts": 1728036610.899
}