Meeting Checked In

When someone checks in to a meeting, 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
checkedInTime Long The time of the meeting check-in.
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": "f477a44b-dc7b-4635-a5cb-dd3324c7766e",
  "eventCreatedTime": 1685432431,
  "eventVersion": "1.0",
  "eventType": "MEETING_CHECKED_IN",
  "data": {
    "checkedInTime": 1685432431,
    "roomId": 2808,
    "roomName": "Meeting Room 4",
    "meetingId": "WzEsNzY0NzYsMCwxNjkwNTMzOTAwLDBd"
  }
}