Is ListMeeting() gets called whenever there is a new meeting

Description
I have an application where it shows list of upcoming meetings. I can’t see new meeting when I create a meeting. So my question is do I have need to call “preMeetingService.listMeeting()” once in the onCreate() or I have to call the method in regular interval.

Hi @hitansu166,

Thanks for the post. Are the new meetings being scheduled using the PreMeetingService.scheduleMeeting? The interface listMeeting() won’t update itself since it is not a callback so if you would like to get the new list of meetings, you will need to call this interface again to fetch the latest info.

Hope this helps. Thanks!