""" Create Webex Room """
import json
import requests
import pprint
URL = "https://webexapis.com/v1/rooms"
PAYLOAD = {
"title": "DevAsc Team Room"
}
HEADERS = {
"Authorization": "Bearer
MDA0Y2VlMzktNDc2Ni00NzI5LWFiNmYtZmNmYzM3OTkyNjMxNmI0ND-
VmNDktNGE1_PF84_consumer",
"Content-Type": "application/json"
}
RESPONSE = requests.request("POST", URL,
data=json.dumps(PAYLOAD), headers=HEADERS)
pprint.pprint(json.loads(RESPONSE.text))
Example 10-3 shows the response to creating a room.
The response includes the creation time and owner,
along with the ID, which can be used in subsequent calls.
Example 10-3 Response to the Successful Creation of a
Room
Click here to view code image
$ python3 CreateRoom.py
{'created': '2020-02-15T23:13:35.578Z',
'creatorId':
'Y2lzY29zcGFyazovL3VzL1BFT1BMRS8wYWZmMmFhNC1mN2IyLTQ3MWU-
tYTIzMi0xOTEyNDgwYmDEADB',
'id':
'Y2lzY29zcGFyazovL3VzL1JPT00vY2FhMzJiYTAtNTA0OC0xMWVhLWJiZWItYmY1MWQyNGRm
MTU0',
'isLocked': False,
'lastActivity': '2020-02-15T23:13:35.578Z',
'ownerId': 'consumer',
'title': 'DevAsc Team Room',
'type': 'group'}
$