Meeting Created

When a meeting room is booked, 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
startTime Long The start time of the meeting.
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": "26afacee-8a7b-4edd-9e16-5379f2768168",
  "eventCreatedTime": 1685430437,
  "eventVersion": "1.0",
  "eventType": "MEETING_CREATED",
  "data": {
    "startTime": 1685431800,
    "endTime": 1685435400,
    "roomId": 2808,
    "roomName": "Meeting Room 4",
    "meetingId": "WzEsNzY0NzYsMCwxNjkwNTMzOTAwLDBd"
  }
}