MethodAPIDescriptionGE
Thttps://webexapis.com/v1/rooms List all the
roomsPO
SThttps://webexapis.com/v1/rooms Create a new
roomGE
Thttps://webexapis.com/v1/rooms/
{roomId}Get room
detailsGE
Thttps://webexapis.com/v1/rooms/
{roomId}/meetingInfoGet room
meeting
detailsPU
Thttps://webexapis.com/v1/rooms/
{roomId}Update room
detailsDE
LE
TEhttps://webexapis.com/v1/rooms/
{roomId}Delete a roomYou can use the Rooms API to create a room. When you
do, an authenticated user is automatically added as a
member of the room. To create a room, you can use the
POST method and the
API https://webexapis.com/v1/rooms.
Example 10-2 show Python request code that creates a
room with the name DevAsc Team Room. It initializes
variables such as the base URL, the payload, and the
headers, and it calls the request. The header consists of
the bearer token of the authenticated user or the
integration along with other parameters.
Example 10-2 Python Request to Create a New RoomClick here to view code image