Description
I’ve developed a simple node app to help us upload registration lists to our zoom meeting. The app is taking in the Bearer jwt token, but I’m still getting an “invalid token” error
Error
code: 124, message: ‘Invalid access token.’
Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT
Which Endpoint/s?
https://api.zoom.us/v2/meetings/${meetingId}/registrants
How To Reproduce (If applicable)
await axios({
method: “post”,
url: https://api.zoom.us/v2/meetings/${meetingId}/registrants
,
qs: {status: “active”},
Authorization: bearer,
Body: body
both the meetingId and the token are logging correctly.