Subject: Issue Starting Cloud Recording with ZRCSDK (Linux)
Hello Zoom Team,
I am working with the Zoom Room Control SDK (ZRCSDK) on Linux. Most features are working well, but I am running into an issue with starting Cloud Recording.
I am using the function:
virtual ZRCSDKError StartMeetingCloudRecording() = 0;
When I call this, I receive the error:
Failed to start Cloud Recording. Error code: 352
ZRCSDKERR_NOT_SET_RECORDING_NOTIFICATION_EMAIL = 352, ///< You can’t start recording before setting recording notification email.
To address this, I attempted to set the recording notification email first, but the call returned:
Recording Notification Result: 300
ZRCSDKERR_MEETING_SHARE_IS_DISABLED = 300, ///< Meeting Share is disabled.
This creates a circular problem:
StartMeetingCloudRecording() fails unless the notification email is set.
SetMeetingRecordingNotificationEmail() fails with an unrelated error.
This is working fine with the zoom’s Native app. So i assume the required configurations from admin portal are correct.
Please suggest what we are doing wrong as per the required workflow or what things we can check to resolve this.