How to host meeting using StartParam4WithoutLogin method

Description
A clear and concise description of what the question is.
I am using windows c# wrapper StartParam4WithoutLogin method and trying to host meeting but i am not able to hots meeting.

Which version?
Knowing the version can help us to identify your issue faster.

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Go to ‘…’
  2. Click on ‘…’
  3. Scroll down to ‘…’
  4. See error

Screenshots
If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Hi aparab,

Thanks for using Zoom SDK. To host a meeting using StartParam4WithoutLogin, here are the steps:

  1. Authenticate with Zoom Rest API, and schedule a meeting(https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate)
  2. Retrieve Zoom token and Zoom Access Token(ZAK) from https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usertoken
  3. Pass the userID(email address), meeting number, display name, Zoom token and ZAK to StartParam4WithoutLogin method to host a meeting

You may refer to the implementation in the Windows SDK demo app(The C# wrapper is calling the same Windows SDK interface):https://github.com/zoom/zoom-sdk-windows/tree/master/demo/sdk_demo_v2

Hope this helps. Thanks!

Hello sir,

Can you send me one example for StartParam4WithoutLogin method.
I need to know the process with parameters.

When i am trying to start the meeting it goes to join meeting link.

here is my start meeting code.

StartParam4APIUser apiUser = new StartParam4APIUser();
apiUser.meetingNumber = meetingNumber ;
apiUser.userID =userID ";
apiUser.userName =userName ;
apiUser.userToken = “MjUyLTg1REEyUzMtQLUVJNUI0QTIyMTM2Nzc012M”;

        StartParam startParam = new StartParam();
        startParam.apiuserStart = apiUser;
        startParam.userType = SDKUserType.SDK_UT_APIUSER;
        SDKError err = ZOOM_SDK_DOTNET_WRAP.CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().Start(startParam);

Hi,

Thanks for the reply. You may refer to the implementation of the Windows SDK demo app, here are the links to the actually implementation for this scenario:

Hope this helps. Thanks!