Get Meeting ID via Student/Faculty Email Address

Given a student email address, is there a way to get their meeting id?

Use case: asp.net core app that allows students to locate study buddies. Each student can indicate they are interested in hosting a zoom session. But instead of forcing them to enter their zoom meeting url, it would be nice to just use a boolean and let the system look up and display the meeting url.

Hey @ixm7,

You can get a users personal meeting id (pmi) by calling the GET /users/{userId} endpoint

You can pass in their email as the {userId} param.

Does that help?

1 Like