Electron SDK v6.6.5 getting SDKRawDataError_NO_SHARE_DATA from zoomRawData.Subscribe func

Meeting SDK Electron Wrapper V6.6.5

Description
While exploring the Meeting SDK Electron Wrapper, we are consistently encountering the SDKRawDataError.SDKRawDataError_NO_SHARE_DATA error from zoomRawData.Subscribe. Below is the relevant portion of the code I am using (in src\assets\ts\rawdata\video.ts line 43):

const handleSubscribeVideo = (resolution: number, recv_handle: number, subscribeId: number) => {

    let obj = {resolution, recv_handle}

    let ret = zoomRawData.SetRawDataResolution(obj)

    let subscribeObj = {

      subscribeId,

      rawdataType: ZoomSDKRawDataType.RAW_DATA_TYPE_VIDEO,

      recv_handle: recv_handle

    }

    ret = zoomRawData.Subscribe(subscribeObj)

    if (ret == SDKRawDataError.SDKRawDataError_SUCCESS || ret == SDKRawDataError.SDKRawDataError_NO_VIDEO_DATA) {

      subscribedVideoList.value[recv_handle] = zoomMeetingParticipants.GetUserInfoByUserID(subscribeId)

    }

  }

I was wondering if there is any permission that I might be missing in order to access and display the raw video stream here.

Could you please help me understand if any additional configuration or permissions are required from my end?

Thank you for your assistance.