/meetings
Creates a transient room that is available between creation and an hour after the given endDate
. After this time the room will be automatically deleted. The URL to this room is present in the response.
Last updated
Creates a transient room that is available between creation and an hour after the given endDate
. After this time the room will be automatically deleted. The URL to this room is present in the response.
Last updated
Deletes the specified meeting. The endpoint is idempotent, meaning it will return the same response even if the meeting has already been deleted.
meeting ID.
"1"
The resource was deleted successfully.
Returns the specified meeting.
meeting ID.
"1"
A JSON object representing the meeting.
The ID of the meeting.
The name of the room.
"/4b3bd908-cb88-11ec-9d64-0242ac120002"
The URL to room where the meeting will be hosted.
When the meeting starts. Always in UTC, regardless of the input timezone.
When the meeting ends. Always in UTC, regardless of the input timezone.
The URL to the room where the meeting will be hosted which will also make the user the host of the meeting. A host will get additional privileges like locking the room, and removing and muting participants, so you should be careful with whom you share this URL. The user will only become a host if the meeting is on-going (some additional slack is added to allow a host joining the meeting ahead of time or if the meeting goes over time). This field is optional and will only be returned if requested through the fields parameter.
The URL to the room where the meeting will be hosted which will make the user a viewer of the meeting. A viewer will not be able to turn on the camera or microphone, but will be able to join the meeting. This field is optional and will only be returned if requested through the fields parameter.
Returns a list of meetings.
A JSON object with the page containing the array with the meetings results.
The cursor for paginating through the results. To fetch the next page,
set the cursor
to the cursor
returned by the previous request.
If there are no more results, the value returned is null
.
Creates a transient room that is available between creation and an hour after the given end date. After this time the room will be automatically deleted. The URL to this room is present in the response.
Meeting to add.
When the meeting ends. By default in UTC but a timezone can be specified, e.g. 2021-05-07T17:42:49-05:00. This has to be the same or after the current date.
The initial lock state of the room. If true, only hosts will be able to let in other participants and change lock state.
The mode and size of the created transient room.
normal
is the default room mode and should be used for meetings up to 4 participants.
group
should be used for meetings that require more than 4 participants.
"group"
This will be used as the prefix for the room name. The string should be lowercase, and spaces will be automatically removed. 39 character max
"example-prefix"
[a-z0-9]{0,39}
The format of the randomly generated room name.
uuid
is the default room name pattern and follows the usual 8-4-4-4-12 pattern.
human-short
generates a shorter string made up of six distinguishable characters.
"uuid"
If provided, the room will be created with the given template type. Each template defines a set of properties needed for a particular use-case. Currently the only supported template type is "viewerMode". This will set up a room with properties that are needed to create a viewer mode room. The room will be locked, roomMode set to "group" and fields like hostRoomUrl and viewerRoomUrl will be added to the response.
Options for how a meeting should be recorded.
A configuration object for Session Transcription
A configuration object for live RTMP streaming of the meeting
Additional fields that should be populated.
hostRoomUrl
- Include hostRoomUrl field in the meeting response.viewerRoomUrl
- Include viewerRoomUrl field in the meeting response.The resource was created successfully.
The ID of the meeting.
The name of the room.
"/4b3bd908-cb88-11ec-9d64-0242ac120002"
The URL to room where the meeting will be hosted.
When the meeting starts. Always in UTC, regardless of the input timezone.
When the meeting ends. Always in UTC, regardless of the input timezone.
The URL to the room where the meeting will be hosted which will also make the user the host of the meeting. A host will get additional privileges like locking the room, and removing and muting participants, so you should be careful with whom you share this URL. The user will only become a host if the meeting is on-going (some additional slack is added to allow a host joining the meeting ahead of time or if the meeting goes over time). This field is optional and will only be returned if requested through the fields parameter.
The URL to the room where the meeting will be hosted which will make the user a viewer of the meeting. A viewer will not be able to turn on the camera or microphone, but will be able to join the meeting. This field is optional and will only be returned if requested through the fields parameter.