Meeting Reached End Time

When a meeting reaches its end time and no one has checked out, 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
endTime Long The end time of the meeting.
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": "8e399361-d0ea-4a35-a77e-bec393163510",
  "eventCreatedTime": 1685435400,
  "eventVersion": "1.0",
  "eventType": "MEETING_REACHED_END_TIME",
  "data": {
    "endTime": 1685435400,
    "roomId": 2807,
    "roomName": "Meeting Room 3",
    "meetingId": "WzEsNzY0NzYsMCwxNjkwNTMzOTAwLDBd"
  }
}