How to tell if a user has created a meeting

I would like to be able to tell if a user has created any meetings in the past year. I tried using the “/users/{email}/meetings” API but that does not include “instant” meetings. Is there another API that will return ALL meetings? Not just scheduled meetings.

1 Like

You’re right—the /users/{email}/meetings API only returns scheduled meetings. To get all meetings, including instant ones, try using the Reports API: /report/users/{userId}/meetings. It includes both scheduled and instant meetings, but note it requires the user to be on a Business or higher plan. It’s your best bet for a full meeting history over the past year.