CreateBlogSupport
Log inSign up
Home
Webex Meetings
  • Overview
  • Guides
  • API Behavior Changes
  • REST API Basics
  • API REFERENCE
  • All APIs
  • Changelog
  • SDK
  • Webex AI Assistant for Developers
  • Widgets
  • Tutorials
  • Suite Sandbox
  • Beta Program
  • Webex Status API
  • XML API Deprecation

Webex Meetings

Unified Space Meetings

Webex Meeting today has three distinct meeting experiences: Personal Meeting Rooms (PMR), Scheduled Meetings, and Space Meetings. Each of those meeting types has distinct experiences. Unified Space Meetings (USM) consolidates the experiences of Space Meetings with Webex Meetings and melds them together.

This article explains how to enable USM, how to start ad-hoc meetings, including information on password and captcha support.

anchorWebex Meeting Types

anchor

Webex meetings can be broadly classified as:

  1. Webex Meetings
    1. Scheduled Webex Meetings - The meeting is created first and then the meeting information such as the meeting ID, pass code, and unique meeting link is sent to the invitees.
    2. PMR (personal meeting room or "instant meeting") - A meeting with a static URL that can be attached to a meeting schedule as well as sent out as a message for anyone to join.
  2. Space Meetings
    1. Scheduled Space Meetings - The meeting is created first and then the meeting information such as the meeting ID, pass code, and unique meeting link is sent to the members of the space.
    2. Ad-hoc Space Meetings - The meeting can be started instantly from a team space, without any pre-scheduled meeting links. Although these meetings are instant and do not have a meeting ID or URL when they're started, Webex creates both which can be obtained via the Meeting Info API.

anchorPrerequisites for USM

anchor

The only prerequisite is that unified meetings must be enabled.

In the SDK, the default values for enableUnifiedMeetings and enableAdhocMeetings have been set to true.

anchorVerify that USM is Enabled

anchor

To verify that USM is enabled, check to see that the following statement returns true:

webex.meetings.config.experimental.enableUnifiedMeetings;

anchorEnabled USM if It's Disabled

anchor

To toggle USM on or off:

webex.meetings._toggleUnifiedMeetings(changeState);

AsynchronousNo
ParameterschangeState<Boolean (true / false)>
Returnsundefined

You can also change the configuration by toggling the following values:

Meetings :{
 experimental: {
      enableUnifiedMeetings: false,
      enableAdhocMeetings: false
    }
  }

anchorCreate an Ad-hoc Space Meeting

anchor

Create an ad-hoc space meeting using a room ID via the Webex REST Room API.

Here's a typical room object:

{
  "id": "Y2lzY29zcGFyazovL3VzL1JPT00vYzVlNjgxODAtMDkxMy0xMWVkLWFmZjQtYTc5YzYwNWU1MEKl",
  "title": "Example Room",
  "type": "group",
  "isLocked": false,
  "lastActivity": "2022-08-25T07:30:18.466Z",
  "creatorId": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8zNDRlYTE4My05ZDVkLTRlNzctYWVkMi1jNGYwMDRhZmR6NUV",
  "created": "2022-07-21T16:40:04.760Z",
  "ownerId": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi8xZWI2NWZkZi05NjQzLTQxN2YtOTk3NC1hZDcyY2FlMGVyNHZ",
  "isPublic": false
}

Pass the id to the Meetings object's create() method to create a new meeting:

webex.meetings.create(roomId);

AsynchronousYes
Mandatory ParametersroomId
ReturnsA promise that gets resolved and returns a Meeting object.

anchorJoin an Ad-hoc Meeting in Progress

anchor

When an ad-hoc meeting is created, Webex generates a meeting ID and a URL, which then can be shared with others who can then join using that information.

To retrieve that meeting information, access the Meeting object's meetingInfo instance variable:

meeting.meetingInfo;

For a working example, see the Kitchen Sink App.

anchorJoin a Meeting by Entering a Password/Captcha

anchor

If the user is not a member of the space where the has been created, the user is prompted for the meeting password. If the user enters the password incorrectly too many times, captcha information is provided along with an informational error code.

For more information see:

  • Verify a Meeting Password
  • Password and Captcha Workflow
In This Article
  • Webex Meeting Types
  • Prerequisites for USM
  • Verify that USM is Enabled
  • Enabled USM if It's Disabled
  • Create an Ad-hoc Space Meeting
  • Join an Ad-hoc Meeting in Progress
  • Join a Meeting by Entering a Password/Captcha

Connect

Support

Developer Community

Developer Events

Contact Sales

Handy Links

Webex Ambassadors

Webex App Hub

Resources

Open Source Bot Starter Kits

Download Webex

DevNet Learning Labs

Terms of Service

Privacy Policy

Cookie Policy

Trademarks

© 2025 Cisco and/or its affiliates. All rights reserved.