Meeting Checked Out

When a meeting is ended, and the system sends an event to the third-party application.

Event parameters

Parameter Type Description
eventId String The unique ID of the event.
eventCreatedTime Long The time at which the event trigger occurred.
eventVersion String The API version.
eventType String The event that triggered the payload.
data Object <Details> A nested data object containing the relevant event information.
Details
Parameter Type Description
endedTime Long The time of the meeting check-out.
roomId Long The unique ID of the meeting room.
roomName String The name of the meeting room.
meetingId String The unique ID of the meeting.

Event example

{
  "eventId": "e346b29a-634f-4a31-b57b-840df9011f57",
  "eventCreatedTime": 1685433085,
  "eventVersion": "1.0",
  "eventType": "MEETING_CHECKED_OUT",
  "data": {
    "endedTime": 1685433085,
    "roomId": 2808,
    "roomName": "Meeting Room 4",
    "meetingId": "WzEsNzY0NzYsMCwxNjkwNTMzOTAwLDBd"
  }
}