Getting error Authenticated user has not permitted access to the targeted resource while creating meeting

Hi @prashanth1

We had a call with zoom testing team and discussed this issue with them,

issue was we need to remove schedule_for parameter while creating meeting because as their developer said this schedule_for needs shared access permission.

so after removing request to create meeting become like this.

 settings = {
        'enable': True,
        'host_video': True,
        'cn_meeting': True,
        'in_meeting': True,
        'join_before_host': True,
        'mute_upon_entry': False,
        'registrants_confirmation_email': False,
        'waiting_room': False,
        'watermark': False,
        'registrants_email_notification': True,
        'use_pmi': True,
        'rooms': None
    }

    meeting = {
        'topic': topic,
        'type': type,
        'start_time': start_time,
        'schedule_for': email,
        'duration': duration,
        'timezone': timezone,
        'password': password,
        'agenda': agenda,
        'settings': settings,
    }

now after removing it, its working fine for us now.

3 Likes