Whether I can use "me" default as userId or not when use JWT API with userId

Description
JWT api of create meeting need the userId.I have a token,whether I can use “me” default as userId or not when the JWT API need userId param?

/users/{userId}/meetings
I see the document remark the userId:
The user ID or email address of the user. For user-level apps, pass me as the value for userId.

what does user-level apps mean?And can I use “me” default when I need userId param,such as create a meeting(/users/{userId}/meetings)

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

Hey @venlenter,

User Level is referring to OAuth Apps.

For JWT, use the UserID or the email as the userId path:

/users/{userId}/meetings

/users/{email}/meetings

Thanks,
Tommy

Can I use “me” as {userId} when use JWT API,such as /users/me/meetings?
I try to use JWT API( /users/me/meetings) and find it is successful.Is it the wrong call?

Hey @venlenter,

Yes you can, however since you can only have 1 JWT app for all your Zoom users, it will only return the info for the Zoom Account Owner if you use me.

Thanks,
Tommy

Thanks.I got it.The issue has been resolved

1 Like

You are welcome! :slight_smile:

-Tommy