Closed
Description
After upgrading to 1.7 from 1.6 i can no longer create a room with the setting isAnnouncemeanOnly: true
E AttributeError: 'Room' object has no attribute 'isAnnouncementOnly'
from webexteamssdk import WebexTeamsAPI, ApiError
def __init__(self, access_token)
self.api = WebexTeamsAPI(access_token)
........
try:
# Create the room first
room = self.api.rooms.create(title=room_name,
teamId=team_id,
isLocked=True,
isAnnouncementOnly=True
)
Is there a new way to do this or just a bug?