Invalid access token jwt

Using this template helps us debug your issues more effectively :slight_smile:

Description
Am integrating zoom in my Nodejs application. Calling /accounts api with jwt authentication but always getting Invalid access token.

Error
{ code: 124, message: ‘Invalid access token.’ }

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
/accounts

How To Reproduce (If applicable)
Steps to reproduce the behavior:
This is my request options
const options = {
method: ‘get’,
baseURL: ‘https://api.zoom.us/v2’,
url: ‘/accounts’,
qs: {
status: ‘active’,
},
data: {
‘first_name’: ‘rukhsar’,
‘last_name’: ‘ch’,
‘email’: ‘chrukhsar631@gmail.com’,
‘password’: ‘123456’,
},
auth: {
‘bearer’: ‘yourtokengoeshere’,
},
headers: {
‘User-Agent’: ‘Zoom-Jwt-Request’,
‘content-type’: ‘application/json’,
},
json: true,
}

Any help from zoom developers will be appreciated
Thanks

Hi @chrukhsar631,

Welcome to the forum.

Please cloud you confirm if you are an approved partner? Only approved partners can use the master API, and you will need to email partner-success@zoom.us in order to get it activated for your account.

Please find more info here: https://marketplace.zoom.us/docs/api-reference/zoom-api/accounts/accounts

Thanks,
Alex

Thanks for answering me. how can I be approved partner in order to consume master APIs?

You will need to email partner-success@zoom.us

Thanks for pointing them in the right direction @alexmayo :100:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.