Skip to main content
A meeting ended event is emitted when the last participant in a call leaves. There can be a delay up to 20 seconds to determine if the meeting has ended, permitting reconnections, before sending the event.

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

start_ts
number
The Unix epoch time in seconds representing when the meeting started.
end_ts
number
The Unix epoch time in seconds representing when the meeting ended.
meeting_id
string
The meeting ID.
room
string
The name of the room.
{
  "version": "1.0.0",
  "type": "meeting.ended",
  "id": "met-end-f2aa1ade-ff80-464c-b46e-50ffa577d48d-1708526104",
  "payload": {
    "start_ts": 1708526032,
    "end_ts": 1708526104.671,
    "meeting_id": "f2aa1ade-ff80-464c-b46e-50ffa577d48d",
    "room": "TrPmUX1DzjSwDaAFDfNj"
  },
  "event_ts": 1708526125.197
}