Zoom Meetings iOS SDK : Identify the registrants(participants who joined using registrant join_url) on the Zoom Meeting

Use case: We need to find a way to identify the registrants(participants who joined using registrant join_url) during the Zoom Meeting(Zoom Meetings iOS SDK)

In the following scenario we’re using:

  • The Zoom Meeting API to create meeting and add registrant.
  • Zoom Meetings iOS SDK to host the meeting from the App on Ipad
  • Standard Zoom Web App to connect to the meeting as a participant
  1. We’re creating the meeting using Meeting API
    Zoom Meeting API
    API Request:
  • approval_type : 0,
  • waiting_room : false,
  • start_time : ‘startTime’
  1. Adding a meeting registrant:
    Zoom Meeting API
    API Request:
  • email : ‘example@email’,
  • first_name : ‘first’
  • last_name : ‘last’
    API Response:
  • id : ‘meetingId’,
  • join_url : ‘The URL the registrant can use to join the meeting.’
  • registrant_id : ‘The registrant’s ID.’
  • start_time : ‘The meeting’s start time.’
  • topic : ‘The meeting’s topic.’
  1. Host starts the meeting from the Zoom Meetings iOS SDK.

  2. Participant is connecting to the meeting using registrant join_url via standard Zoom App.

  3. In the Zoom Meetings iOS SDK we cannot find the registrant_id among the values of MobileRTCMeetingUserInfo.

Could you suggest the proper way to identify the registrants during the Zoom Meeting?

Thank you.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.