Equivalent of Version 1.0 GetByEmail In Version 2.0

Version 1.0 of the API contained a
/v1/user/getbyemail endpoint which returned user information for one user based on the email.

In Version 2.0 of the API, there is /users which returns information for multiple users and
/user/email which only indicates if there is a user for the specified email address but does not provide user information such as the user id.

In version 2.0, to get a user id from and email address, do I need to get the full list of users?

Hey @helen_arditi, thanks for posting and using Zoom! :slight_smile:

To get a single user by email you can call the GET /users/{userID} endpoint. Just pass in the email as the userID

Thanks,
Tommy