Skip to main content
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

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.
domain_id
string
ID of the domain corresponding to this dial-in event.
room
string
The name of the room where the dial-in event occurred.
sip_endpoint
string
sip endpoint associated with the room, which is ready to receive call.
{
  "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
}