Skip to main content
Emitted when the dial-in session encounters an warning.

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.
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.
error_msg
string
string describing the warning.
{
  "version": "1.0.0",
  "type": "dialin.warning",
  "id": "2868-dial-in-warn-ff1e7130-7752-4304-9cf4-08d2583a41dc",
  "payload": {
    "domain_id": "04b89420-cf8b-4ea5-a428-02c40b0e2a59",
    "room": "my-dialin-room",
    "timestamp": "1728036639",
    "session_id": "ff1e7130-7752-4304-9cf4-08d2583a41dc",
    "error_msg": "Dialin codec did not match, using fallback."
  },
  "event_ts": 1728036639.433
}