Meeting APIs Now Support Live Streaming
March 27, 2025

There was a great update recently released for the Meeting APIs that enables hosts to setup live streaming of their meetings and webinars through various services, such as IBM Video Streaming, Facebook Live, Vbrik Rev, and YouTube Live. This feature is ideal to help your meetings reach a wider audience for product launches, company announcements, expert panel discussions and more. Another benefit of this feature is that instead of having to make an exhaustive list of meeting invitees, you can simply provide a link to your live stream, and anyone can view your live stream quickly and easily. Now that this can be enabled via the Meetings APIs, you can completely automate the process to set up a live stream of any Webex meeting or webinar and optimize efficiency.
Live Stream Attributes in the Meeting APIs
Some new attributes have been added in the Create a Meeting, Patch a Meeting, and Update a Meeting endpoints to set up live streaming. The main attribute that needs to be set first is enabledLiveStream
, that can be true
or false
. When enabledLiveStream
is set to true
, an object called liveStream
is then required to configure the live stream settings of the meeting using the following parameters:
destination
(required) - this is a text string that describes the destination of the live stream, such as “YouTube”.rtmpURL
(required) – this is for the ingestion stream that is used for sending the live video content from the Webex meeting to a streaming service. Refer to your specific live streaming service for this information.The URL will use the
rtmp/s
protocol such as:rtmps://example.com:1935/LiveMedia/WebexMeetingStream
.streamURL
(required) – this is for the playback URL to view the Webex meeting live stream. This URL should use the M3U8 video format for HTTP Live Steaming (HLS), which is supported across a wide range of devices, including iOS & Android devices, modern web browsers, smart TVs, and streaming devices. Again, refer to your live streaming service to obtain this information. TheURL
may look something like this example:https://example.com/WebexStreaming/index_a.m3u8
layoutWithoutSharedContent
– this parameter sets the meeting layout that will be displayed on the live stream when no content is being shared. Any one of these strings are accepted:grid
– layout to see multiple meeting participants in a gridstack
– layout to display the active speaker on the stage and up to six participants in thumbnails across the topfocus
- layout that only displays the active speaker
layoutWithSharedContent
– sets the meeting layout that will be displayed on the live stream when there is content being shared. The following strings are accepted in this field:stack
– layout to display the shared content on the stage and up to six participants in thumbnails across the topfocusedContentWithActiveSpeaker
– layout to display the shared content in the main part of the screen and a large thumbnail of the active speaker in the upper right cornerfocusedContent
– layout that only displays the shared content in the main part of the screen and does not display the participants
allowChangeLayoutInMeeting
– when set totrue
, it will allow the changing of the live streaming layout in the meeting.followStageLayoutWhenSynced
– when set totrue
, it will follow the stage layout when being synchronized.resolution
– this string sets the resolution of the live steam, such as1920x1080
. If not specified, the default setting is720x1280
.
In summary, the live stream setup in a Create/Patch/Update Meetings API request will include something like this in the JSON body:
{
"enabledLiveStream": true,
"liveStream": {
"destination": "YouTube",
"rtmpUrl": "rtmps://example.com:1935/LiveMedia/WebexMeetingStream",
"streamUrl": "https://example.com/WebexStreaming/index_a.m3u8",
"layoutWithoutSharedContent": "grid",
"layoutWithSharedContent": "stack",
"allowChangeLayoutInMeeting": false,
"followStageLayoutWhenSynced": true,
"resolution": "1920x1080"
}
}
Enabling the Webex Meeting Live Streaming Feature for Testing
The Live Stream feature for Webex Meetings is not turned on by default and must first be enabled by a Webex administrator in Control Hub to start testing it. The best route to start testing the API is by using a free Developer Sandbox, which provides admin access to a Webex org of your own. Once you log into Control Hub as an admin, you will need to enable live streaming services on your Webex site, enable live streaming for individual users, and enable the live stream video resolutions. Refer to this help article for the most up-to-date information on applying these settings inside of Control Hub.
After you enabled the proper settings in Control Hub and setup the live stream with the Meetings API, you are ready to test it. First, start the meeting in the Webex app as the host. When the meeting is active, start live streaming from the meeting client by selecting the three dots, click Start live streaming and then Go live. You can then head over to your live streaming service to watch your meeting broadcast as a regular viewer.
Need Some Help? No Problem
As always, we are standing by to provide developer support for any of the API features in this article. If you need help or have any questions, the Webex Developer Support Team is eager to assist. You can also start or join a conversation on the Webex for Developers Community Forum. Until next time, happy developing!