I had successfully integrated Android SDK in my app and Now I am able to Login with my Zoom Username and Password .I am also able to start meeting.
But , That’s not clear to me:
- How to create meeting with code in Android App.
- How to get Meeting Id of created meeting.
- How to get Meeting Participates detail with time and username.
Please help me I am stuck now.
Hi @kiraniqwing, thanks for the post.
How to create meeting with code in Android App.
Can you please be a little more specific on this one? This could be referring to a few different things within the SDK, so I would like to make sure we’re getting you the correct information. 
How to get Meeting Id of created meeting
After entering a meeting, you can retrieve the meeting ID with the following code:
ZoomSDK.getInstance().getInMeetingService().getCurrentMeetingID();
How to get Meeting Participates detail with time and username.
First, you can retrieve a list of all participants’ IDs in the current meeting:
ZoomSDK.getInstance().getInMeetingService().getInMeetingUserList();
With each participant ID, you can retrieve a user’s InMeetingUserInfo
:
ZoomSDK.getInstance().getInMeetingService().getUserInfoById(userId);
Thanks!