Mobile Zoom URL Schemes

I was given the URL scheme below to launch a meeting within Zoom mobile app.
zoomus://[Join Meeting - Zoom]

What is the URL to just launch the Zoom mobile app without specifying a meeting?
We would like to point users to go to / launch Zoom mobile app within our mobile app.

Hi Ariel,
Thanks for using Zoom SDK. Which platform(Android or iOS) are you referring to? Do you mean you would like the user to press a URL in your app and then switch to our official Zoom client without associating with a meeting number?

Thanks!

Hi Carson,

We have both, Android and iOS. And Yes, we want to launch /switch to your official Zoom app without associating with a meeting number. What URL should
we use?

Thanks,

Ariel

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!

Does a set of published URI’s exist, I would be interested in starting a screen sharing session the quickest way.

Hi Mike,

Thanks for using Zoom SDK. Do you want to start sharing with Zoom client app or with Zoom SDK? If it is Zoom SDK, you may use deep link to launch your Zoom SDK app, and using Zoom SDK interfaces to start a meeting and then start sharing.

Thanks!