Member Junction
    Preparing search index...

    The RTMS connection params delivered by the meeting.rtms_started webhook. A deployment passes these to the bridge via the session Configuration (see ZoomRtmsSdkConfig); this adapter forwards them to RtmsClient.join. Field names mirror the webhook payload verbatim. VERIFY against the Zoom webhook schema (https://developers.zoom.us/docs/rtms/).

    interface ZoomRtmsConnectionParams {
        meeting_uuid: string;
        rtms_stream_id: string;
        server_urls: string;
        signature?: string;
    }
    Index

    Properties

    meeting_uuid: string

    The meeting UUID from the webhook (payload.object.meeting_uuid).

    rtms_stream_id: string

    The RTMS stream id from the webhook (payload.object.rtms_stream_id).

    server_urls: string

    The signaling/media server URL(s) from the webhook (payload.object.server_urls).

    signature?: string

    The webhook signature (HMAC-SHA256 over client_id+meeting_uuid+rtms_stream_id), when pre-computed.