action zoom_get_live_stream_details { label: "Get live stream details" description: "Zoom allows users to [live stream a meeting](https://support.zoom.us/hc/en-us/articles/115001777826-Live-Streaming-Meetings-or-Webinars-Using-a-Custom-Service) to a custom platform. Use this API to get a meeting's live stream configuration details such as Stream URL, Stream Key and Page URL.

\n**Prerequisites:**
\n* Meeting host must be a licensed user with a Pro or higher plan.
\n* Live streaming details must have been [configured](https://support.zoom.us/hc/en-us/articles/115001777826-Live-Streaming-Meetings-or-Webinars-Using-a-Custom-Service#h_01589a6f-a40a-4e18-a448-cb746e52ebc5) for the meeting.

\n**Scopes:** `meeting:read:admin` `meeting:read`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`\n\n\n\n" provider: zoom method: GET path: "/meetings/{meetingId}/livestream" encoding: json input: { type: "object" properties: { meetingId: { type: "string" } } required: ["meetingId"] additionalProperties: false } output: { type: "object" properties: { page_url: { type: "string" description: "Live streaming page URL. This is the URL using which anyone can view the live stream of the meeting." } stream_key: { type: "string" description: "Stream Key." } stream_url: { type: "string" description: "Stream URL." } } } }