How to join in a meeting in zoom room app , from another app

In android I can join to zoom meeting , from another app like following

private void launchZoomUrl() {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://zoom.us/join?confno=**7618757358**&pwd=**ghR5nb**"));
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

The above method , will open the zoom app , and directly join in the meeting , where id is 7618757358 and password is ghR5nb

But I want to do the same thing , with zoom room app (https://play.google.com/store/apps/details?id=us.zoom.zrc). User will give input meeting id and password or meeting link , it will directly join a meeting in zoom room app .

Hi @sshuvro58, thanks for the post.

This forum is only for support related to the Zoom Mobile SDK. For help with one of our other products, please visit our support page.

Thanks!