C# Wrapper CreateScheduleMeetingItem() Always Null

Description
CZoomSDKeDotNetWrap.Instance.GetPreMeetingServiceWrap().CreateScheduleMeetingItem()
Always return null.

Which Client Windows SDK version?
C# Wrapper 5.4.54802.0124

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

  1. CZoomSDKeDotNetWrap.Instance.GetAuthServiceWrap().SDKAuth(authParam); Success

  2. LoginParam loginParam = new LoginParam();
    LoginParam4Email email = new LoginParam4Email();
    email.userName = txtUsername.Text.Trim();
    email.password = txtPassword.Password;
    loginParam.emailLogin = email;
    loginParam.loginType = LoginType.LoginType_Email;
    SDKError err = CZoomSDKeDotNetWrap.Instance.GetAuthServiceWrap().Login(loginParam);
    *** err = Success

  3. var MeetingItem =
    CZoomSDKeDotNetWrap.Instance.GetPreMeetingServiceWrap().CreateScheduleMeetingItem()

    *** MeetingItem always null

I been try to search in Forum, but no topic solved my unknow error.

Hey @chhay.sereiseth,

Thanks for using the dev forum!

Unfortunately, there are known stability issues with the premeeting service in the SDK. We highly recommend using the Zoom REST API for this instead: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate

Thanks!
Michael

@Michael_Condon
Thank, I think I should go that way too.

Hey @chhay.sereiseth,

Sorry for any inconvenience this may cause, please let me know if you run into issues there.

Michael

1 Like

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