Changelog: Meeting SDK - Electron - 7.1.0

Released: 2026-06-24 Updated: 2026-07-01

Visit Changelog

Summary: Add callbacks and interfaces in zoom_meeting_participants_ctrl.js; add support for breakout room summaries; provide ROI for face in raw video data; support on-demand avatar download; fixed a breakout-room joining issue.

Added

  • Add callback and interfaces in zoom_meeting_participants_ctrl.js.

    /**
     * Callback event when the user's avatar path is updated in a meeting.
     * @event onInMeetingUserAvatarPathUpdated
     * @param {Number} userID Specify the user ID whose avatar path is updated.
     */
    function onInMeetingUserAvatarPathUpdated(userID)
    
    /**
     * Set onInMeetingUserAvatarPathUpdated callback.
     * @method SetOnInMeetingUserAvatarPathUpdatedCB
     * @param {Function} onInMeetingUserAvatarPathUpdated
     * @return {Boolean} true or false
     */
    SetOnInMeetingUserAvatarPathUpdatedCB
    
    /**
     * Requests the avatar download for a specified user.
     * @method RequestAvatarForUser
     * @param {Number} userid Specify the user ID whose avatar the SDK requests.
     * @return {Number} If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
     * @note Valid for both ZOOM style and user custom interface mode. Valid for both normal user and webinar attendee.
    */
    RequestAvatarForUser
    

Changed

  • Block “Make host” for bots.
  • Alpha channel mask is no longer disabled globally when an unsupported client joins.