Meetings
Update a meeting
Updates a meeting in an organization for the given meeting ID.
patch/meetings/{meeting_id}
Path parameters
meeting_idstring uuid required
ID of the meeting. Fetch the meeting ID using the create a meeting API.
Request body
Example request
{
"status": "INACTIVE"
}Response
Success Response
Example response
{
"data": {
"recording_config": {
"video_config": {
"width": 1280,
"height": 720
},
"storage_config": {
"region": "us-east-1"
},
"live_streaming_config": {
"rtmp_url": "rtmp://a.rtmp.youtube.com/live2"
}
}
}
}