Zoom App Marketplace
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Webhook

I am unable to get Webhook notification in my zoom apps. If I am using jwt app type then webhook notification working fine. Please help me asap i am stuck in zoom app web hook notification.

reply-icon Latest Reply - 

Unable to find out "users/me" details in Web zoom Apps

var clientId = 'XXXXXXXXXX'; var clientSecret = 'XXXXXXXXXXXXXXXXX'; var encodedData = Buffer.from(clientId + ':' + clientSecret).toString('base64'); var authorizationHeaderString = 'Authorization: Basic ' + encodedData; let options = { method: 'POST... Show more
var clientId = 'XXXXXXXXXX';
    var clientSecret = 'XXXXXXXXXXXXXXXXX';
    var encodedData = Buffer.from(clientId + ':' + clientSecret).toString('base64');
    var authorizationHeaderString = 'Authorization: Basic ' + encodedData;
   
    let options = {
        method: 'POST',
        headers: {
            Authorization: `Basic ${encodedData}`,
        },
    };
    request(options, (error, response) => {
        var rs = JSON.parse(response.body);
        var access_token = rs.access_token;
        console.log(access_token);
    //----------------------
        const options1 = {
            uri: 'https://api.zoom.us/v2/users/me',
            qs: {
                'status': 'active'
            },
            auth: {
                'bearer': access_token
            },
            headers: {
                "alg": "HS256",
                "typ": "JWT"
              },
            json: true // Parse the JSON string in the response
        };    
          request(options1, function (error, response, body) {
            console.log(body);
          });
       
    //------------------------

   });
 
 
In valid token problem

Show less

reply-icon Latest Reply - 

Permission Access for scopes during oAuth for sub users

I wanted to give permissions to these scopes attached below., while creating a oAuth appBut i am unable to get where to give permission.Moreover,it is saying to contact your IT administrator and i have no idea of who it is.From owner account i tried ... Show more

I wanted to give permissions to these scopes  attached below., while creating a oAuth app

But i am  unable to get where to give permission.

Moreover,it is saying to contact your IT administrator  and i have no idea of who it is.

From owner account i tried to give every possible permissions but still of no use.

Any answer would be helpful.

 


Show less

Zoom App | Hyperlinks not working

Hi Team, I am trying to create a simple zoom app with a hyperlink on click on which should open up a webpage. I have tried to embed a link to YouTube on click of which nothing happens. Upon further diagnosis using fiddler tool, I am getting attached ... Show more

Hi Team,

 

I am trying to create a simple zoom app with a hyperlink on click on which should open up a webpage. I have tried to embed a link to YouTube on click of which nothing happens. Upon further diagnosis using fiddler tool, I am getting attached error. I have tried to whitelist the domain from the app page as well but no luck. Any help in this regard would be helpful.


Show less

Zoom for government API

Does Zoom for government support S2S OAuth and/or the JWT application? 

When trying to activate JWT app, it won't allow "other" expiration time on token

Hello,Trying to set up JWT app and wanting to establish a far off expiration time. However the options are greyed out. The only time I can get them to not be greyed out is after activation but then the expiration is 90 mins. Trying to adjust with the... Show more

Hello,

Trying to set up JWT app and wanting to establish a far off expiration time. However the options are greyed out. The only time I can get them to not be greyed out is after activation but then the expiration is 90 mins. Trying to adjust with the radio options proves futile because it just returns back to original expiration.

 

Any ideas?


Show less

Invitation are not received by mail

Hello I manage a zoom account from which I send invitations to persons in order to create an account and join our organization.I am facing an issue with only one account that doesn't receive the invitation.I am the one who created the mail account an... Show more

Hello

 

I manage a zoom account from which I send invitations to persons in order to create an account and join our organization.

I am facing an issue with only one account that doesn't receive the invitation.

I am the one who created the mail account and also the zoom account once the invitation was received, even checked the spam folder.

 

Thank you


Show less

reply-icon Latest Reply - 

Difference between integration Apps from Zoom and third-party

Hi, I'm wondering what is the difference between integration Apps from Zoom and third-party. Actually, I'm trying to integrate Zoom webinar and Hubspot MA. Then, there are marketplaces and integrations Apps on both of their software ("Zoom for HubSpo... Show more

Hi, I'm wondering what is the difference between integration Apps from Zoom and third-party. Actually, I'm trying to integrate Zoom webinar and Hubspot MA. Then, there are marketplaces and integrations Apps on both of their software ("Zoom for HubSpot" on Zoom marketprace and "Zoom" on Hubspot marketplace). I have not been able to resolve the following questions.

 

・Are there any difference between two Apps?(technically)

If there is difference...

・What function does the Zoom Apps actually perform?

・What function does the Hubspot Apps actually perform?

・Do I need to install both?

・If we want to develop integration Apps with zoom, we need to place Apps on Zoom marketplace? or can we develop integration App without permission?


Show less

Administration system

We want to make an administration system that maximises a Zoom front desk employee's ability to multitask many customers at the same time. If a Zoom front desk employee has more than two different customers at different sites it is difficult to mulit... Show more
We want to make an administration system that maximises a Zoom front desk employee's ability to multitask many customers at the same time. 
If a Zoom front desk employee has more than two different customers at different sites it is difficult to mulittask. To get access to the customers email system, chat system, information data base today requiers that the front desk employe opens multiple browsers and systems. We are looking for one system, swithing easily from customer to customer. Does this exist?

Show less

reply-icon Latest Reply - 

How I remove or hide the avatar icon when our zoom sdk is initialised

Hey zoom team ,I have using a zoom sdk in one of my application when sdk is initialised then the avatar icon shown on the right corner of my device , I want to remove this avatar icon . i have attached my phone screen sort please provide me a solutio... Show more

Hey zoom team ,

I have using a zoom sdk in one of my application when sdk is initialised then the avatar icon shown on the right corner of my device , I want to remove this avatar icon . 

i have attached my phone screen sort please provide me a solution of my problem


Show less

reply-icon Latest Reply -