Opening Zoom app using meeting Id & Password

Hi sir,
For some corner cases I want to open zoom app from my mobile app using meeting id and password.

private void launchZoomClient() {
    PackageManager pm = getPackageManager();
    Intent intent = pm.getLaunchIntentForPackage("us.zoom.videomeetings");
    if (intent != null) {
        startActivity(intent);
    }
}
I can use this code for starting app.
how can I add meeting id and password to open meeting directly ?

Hi @amar.gupta,

The method you are using is just to launch the Zoom meeting app, if you would like to call the Zoom client app and start meeting directly, you may use URL scheme: https://marketplace.zoom.us/docs/guides/guides/client-url-schemes