Hi @sheikhhamzah095, thanks for using our SDK.
There are a couple of different approaches to obtaining the meeting ID and passcode of a meeting after joining it. To do it programmatically (after joining the meeting):
- Get meeting ID:
ZoomSDK.getInstance().inMeetingService.getCurrentMeetingID();
- Get meeting passcode:
ZoomSDK.getInstance().inMeetingService.getMeetingPassword();
Alternatively, you may click on the top bar to view the meeting details, which includes the ID, passcode, and join URL.
Thanks!