Zoom App Marketplace
cancel
Showing results for 
Search instead for 
Did you mean: 
Important updates from Zoom Support:
  • Starting February 3, 2025, Zoom Phone customers must add their phone numbers to an approved 10DLC campaign in order to use SMS/MMS capabilities on their numbers.

  • Introducing more live support options! More Zoom customers now have access to live agent chat support. Sign in and visit our Contact Support page to see all your available support options. We’re here to help!

What is Zoom App Marketplace?

Zoom App Marketplace has more than 2,000 apps that enhance your Zoom experience and improve workflow and collaboration. Explore the Zoom Community's Recent Activity below to join the Marketplace conversation and connect with other members. If you're still looking for support, browse our Zoom Apps and Marketplace support articles or start a new discussion below!

Recent Activity

Resolved! Can't disconnect Otter.ai

I am trying to connect zoom to ReStream.io and I previously had integrated with Otter.ai. I disconnected otter.ai, took the zoom app off of my account. Now everytime I try to select livestream with RTMP it says it is "connected to livestream...but it... Show more

I am trying to connect zoom to ReStream.io and I previously had integrated with Otter.ai. I disconnected otter.ai, took the zoom app off of my account. Now everytime I try to select livestream with RTMP it says it is "connected to livestream...but it it not- it's still trying to talk to otter.ai! Soooo frustrated. Anyone know what i am doing wrong?

 

I can't seem to find the original fill in the blanks for the url and streaming code. The input options are gone under the livestreaming option.


Show less

reply-icon Latest Reply - 

Empty device list

I have added 6 devices on the zoom portal,

But /devices api return empty device list. 

I need help to fetch all devices using Rest api.

Thanks.

 

reply-icon Latest Reply - 

Outlook Plug-in

I just bought a new PC laptop with Windows 11. And it doesn't seem that the Zoom Plug-In for Outlook works for the latest version of Outlook. I am so regretting moving from Windows 10 to Windows 11. I relied heavily on the Zoom Plug-in to schedule my... Show more

I just bought a new PC laptop with Windows 11.   And it doesn't seem that the Zoom Plug-In for Outlook works for the latest version of Outlook.  I am so regretting moving from Windows 10 to Windows 11.   I relied heavily on the Zoom Plug-in to schedule my Zoom meetings.   Any work arounds for this issue?


Show less

reply-icon Latest Reply - 

Read.ai

I made  the mistake of using read.ai and I cannot figure out how to get rid of it.

 

People are now kicking me out of meetings due to the read.ai appearing in the chat.

reply-icon Latest Reply - 

zoom does not work with next js 15

I am experiencing an issue with the Zoom Web SDK in my Next.js application. Upon initializing the Zoom meeting, the application displays a black screen.any help or starter kit for next js 15 ?----------------------------------------------------------... Show more

I am experiencing an issue with the Zoom Web SDK in my Next.js application. Upon initializing the Zoom meeting, the application displays a black screen.any help or starter kit for next js 15 ?
--------------------------------------------------------------
this is my console 
[Fast Refresh] rebuilding
zoomus-websdk.umd.min.js:2 success load webim
zoomus-websdk.umd.min.js:2 success load jsmedia
zoomus-websdk.umd.min.js:2 pre load wasm success: https://source.zoom.us/3.10.0/lib/av/audio.simd.wasm
zoomus-websdk.umd.min.js:2 pre load wasm success: https://source.zoom.us/3.10.0/lib/av/video.mtsimd.wasm
4
-------------------------------

"dependencies": {
"@zoom/meetingsdk": "^3.10.0",
"next": "15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
-------------------------
"use client";
import "./App.css";
import React, { useEffect, useState } from "react";
import Script from "next/script";
import "@zoom/meetingsdk/dist/css/bootstrap.css";
import "@zoom/meetingsdk/dist/css/react-select.css";

function Welcome() {
  const [ZoomMtg, setZoomMtg] = useState<any>(null);

  const authEndpoint = ""; // Replace with your endpoint
  const sdkKey = ""; // Replace with your Zoom SDK Key
  const meetingNumber = ""; // Replace with your meeting number
  const passWord = ""; // Replace with your meeting password
  const role = 0; // 0 = Attendee, 1 = Host
  const userName = "React";
  const leaveUrl = "http://localhost:3000"; // Redirect after leaving the meeting

  useEffect(() => {
    import("@zoom/meetingsdk")
      .then(({ ZoomMtg }) => {
        ZoomMtg.preLoadWasm();
        ZoomMtg.prepareWebSDK();
        setZoomMtg(ZoomMtg);
      })
      .catch((error) => console.error("Zoom SDK Error:", error));
  }, []);

  const getSignature = async () => {
    if (!ZoomMtg) return;
    try {
      const response = await fetch(authEndpoint, {
        method: "POST",
        headers: { "Content-Type": "application/json" },
        body: JSON.stringify({ meetingNumber, role }),
      });
      const data = await response.json();
      startMeeting(data.signature);
    } catch (error) {
      console.error("Error fetching signature:", error);
    }
  };

  const startMeeting = (signature: string) => {
    if (!ZoomMtg) return;

    document.getElementById("zmmtg-root")!.style.display = "block";

    ZoomMtg.init({
      leaveUrl,
      success: () => {
        ZoomMtg.join({
          signature,
          sdkKey,
          meetingNumber,
          passWord,
          userName,
          success: (success: unknown) => console.log("Joined:", success),
          error: (error: unknown) => console.error("Join Error:", error),
        });
      },
      error: (error: unknown) => console.error("Init Error:", error),
    });
  };

  return (
    <>
      <Script
        src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"
        strategy="beforeInteractive"
      />
      <div>
        <div id="zmmtg-root"></div>
        <div id="aria-notify-area"></div>
        <main>
          <h1>Zoom Meeting</h1>
          <button onClick={getSignature}>Join Meeting</button>
        </main>
      </div>
    </>
  );
}

export default Welcome;

 


Show less

reply-icon Latest Reply - 

I want to create an app in zoom marketplace using JSON Web Tokens (JWT) but it doesn't work

I followed all the steps to create the app in zoom marketplace using JSON Web Tokens (JWT) but it doesn't work there is a problem.

 

What solutions and alternatives do they give me?

 

reply-icon Latest Reply - 

report:read:list_meeting_participants:admin scope details

Community novice here to apologies in advance. We're building a connector to Flexera and they are requesting the meeting participant scope:report:read:list_meeting_participants:adminWe need to know exactly what is captured with this (and it's webinar... Show more

Community novice here to apologies in advance.

 

We're building a connector to Flexera and they are requesting the meeting participant scope:

  • report:read:list_meeting_participants:admin

    We need to know exactly what is captured with this (and it's webinar counterpart) to determine if PII is being gathered.


Show less

reply-icon Latest Reply - 

Resolved! Zoom for InTune App does not work with managed App Microsoft Outlook

Good morning,We have the following problem in Intune with the Zoom for InTune app:The employee receives a Zoom invitation in Outlook on the smartphone via Outlook. He opens this link and afterwards the following error message appears:"Action not allo... Show more

Good morning,


We have the following problem in Intune with the Zoom for InTune app:

The employee receives a Zoom invitation in Outlook on the smartphone via Outlook. He opens this link and afterwards the following error message appears:

"Action not allowed: This data is protected by your organisation. You must log in to the app with your account "...." to access the data. If you are already logged in with "...." contact your IT administrator.


We have set the following via InTune:

Zomm for InTune released via the VPP for the client.
Assigned the app to all devices and this app is also installed
Approved the app as an enterprise app in the Azure Portal as a global administrator.
Approved the app in the Protection Policy.

Can you perhaps give me some tips on what I need to configure, although everything fits according to the documentation.

Thank you very much.

Greetings

Markus


Show less

reply-icon Latest Reply - 

Dashboard and Report > View Usage reports

I am attempting to install the AI Notetaker and Transcription by Fireflies.ai app in Zoom. However, I am encountering an error message that states: "You cannot install the app because you don't have the required permissions. Please contact your IT ad... Show more

I am attempting to install the AI Notetaker and Transcription by Fireflies.ai app in Zoom. However, I am encountering an error message that states:

 

"You cannot install the app because you don't have the required permissions. Please contact your IT administrator for permission and try again."

 

The error message also mentions "Dashboard and Report > View Usage reports". I found view "Usage Reports" in the Reports section but I am not sure what this has to do with Dashboard and if I need to check anything in the Dashboard section of permissions, too?

 

Could you please clarify the specific permissions required to install the Fireflies.ai app in Zoom?

 

Thank you for your time and assistance.


Show less

Video SDK

Hello! I have the Video SDK Pay As You Go account but as soon as I enter the Zoom Video SDK site and click Build App it sends me to the usual site with building app and there is no option of Video SDK, it is just general, server oauth and webhook. Wh... Show more

Hello! I have the Video SDK Pay As You Go account but as soon as I enter the Zoom Video SDK site and click Build App it sends me to the usual site with building app and there is no option of Video SDK, it is just general, server oauth and webhook. What can I do?


Show less

reply-icon Latest Reply -