ZoomRtmsSession
Session parameters delivered by the meeting.rtms_started webhook.
Defined in: src/providers/io/zoom/ZoomRtmsInput.ts:135
Session parameters delivered by the meeting.rtms_started webhook.
Remarks
Zoom sends these in payload.object of the webhook body. Pass them to connect() (or supply them up-front in ZoomRtmsInputConfig).
Example
const { meeting_uuid, rtms_stream_id, server_urls } = webhookBody.payload.object;
await zoom.connect({
meetingUuid: meeting_uuid,
rtmsStreamId: rtms_stream_id,
serverUrl: server_urls,
});
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
meetingUuid | string | Unique meeting identifier (meeting_uuid from the webhook). | src/providers/io/zoom/ZoomRtmsInput.ts:137 |
rtmsStreamId | string | RTMS stream identifier (rtms_stream_id from the webhook). | src/providers/io/zoom/ZoomRtmsInput.ts:139 |
serverUrl | string | Signaling WebSocket URL (server_urls from the webhook). | src/providers/io/zoom/ZoomRtmsInput.ts:141 |