-
Hello all, To preface this, my apologies if any of my understanding or usage is incorrect, this is my first experience with any API calling. I am attempting to implement a "Start/Stop Recording" button in a Unity Application that should toggle any currently live Zoom meetings to start or stop a cloud recording. To this end I have successfully acquired the meeting ID of the current live meeting. I was having issues with "User does not exist: accountId" pasting directly the Zoom app's accountId, but resolved it by passing an email address of an account within the organization. At this point, I am now calling -- await zoomClient.Meetings.StartCloudRecordingAsync(meetingId); When I do, the following error generates:
Once again, my apologies if this is something foolish on my end, but I was hoping someone had encountered this issue before or may have some advice. Thank you for taking the time to read this and have a fantastic day! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Update: Totally a client issue, one of the sub-methods was calling .Unsafe.NullRef(), but I had an outdated System.Runtime.CompilerServices .dll that wasnt updating on NuGet Package download for some reasons im still not sure of. In any case, got a new DLL and everything is swell. Thanks! |
Beta Was this translation helpful? Give feedback.
Update: Totally a client issue, one of the sub-methods was calling .Unsafe.NullRef(), but I had an outdated System.Runtime.CompilerServices .dll that wasnt updating on NuGet Package download for some reasons im still not sure of. In any case, got a new DLL and everything is swell. Thanks!