We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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?
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'
Is there a new way to do this or just a bug?