Mobile Zoom URL Schemes

Hi Ariel,
You could use zoomus:// to launch Zoom client from your application.
On Android, you can do something like this(You can also launch our Zoom app via packageManager):

private void launchZoomUrl() {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("zoomus://"));
    if (intent.resolveActivity(getPackageManager()) != null) {
        startActivity(intent);
    }
}

On iOS, you can try the following:

- (void)onLaunchZoomClient
{
    NSString *Uri = @"zoomus://";
     
    if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:Uri]])
    {
        if (@available(iOS 10.0, *)) { // If the system OS is iOS 10.0 and above
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:Uri] options:@{} completionHandler:nil];
        } else {
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:Uri]];
        }
    }
}

You will also need to add LSApplicationQueriesScheme in your info.plist file in order to make this work.

Hope this helps. Thanks!