Step 6: Sharing Public Join Link of a Session

There are multiple links for the scheduled sessions in a batch that can be shared with participants. Please go through the properties of each URL before sharing them

  • URL 1: Public Join Link of single sessions in the Batch (Classroom)

    • URL: https://excelr.onlineclass.site/joinPublicSession/{{sessionId}}

    • This is a public URL which can be used by anyone to join the single session only in the batch (classroom). They need not be part of the class.

    • Only when the session with the {{sessionId}} is started, will this link automatically redirect the user to the Zoom session

  • URL 2: Public Join Link of all sessions in the Batch (Classroom)

    • URL: https://excelr.onlineclass.site/joinPublic/{{class_Token}}

    • This is a public URL which can be used by anyone to join any session running in the batch (classroom). They need not be part of the class as well.

    • This link automatically redirects to a Zoom session which is started in the class

    • The Class_Token can be found in the GET Class API. The token is available in data.settings.magicJoinTokenConfig.token object in the response

      Request:
      GET /user/v2/classes/:classId?full=true
      
      Response:
      {
        status: 200
        data: {
          _id, namespace, pendingRequest, joinedRequest, coTeacherRequests,
          coTeachers, archived, disableReminder, 
          zoomLink: { join_url, mettingEnded, startTime, mettingId }, 
          settings: { disableStudentDiscussions, disableStudentComments, disableScreenCapture, disableWebSdk, lockClassroom, lockAfter, openClassroom, admissionsDisabled, autoAccept, magicJoinTokenConfig: { enabledOn, **token** } },
          subject, timing, userId: { profilePicture, _id, name, phoneNumber },      
          name, classNumber, timingVersion, 
          schedule: { occurrences, _id, createdAt }, thumbnail, suspendedStudents, 
          createdAt,
          joinMagicLink
         }
      }

Last updated