Stop RingCentral softphone from auto dialing call when using RingCentral URI rcmobile

Viewed 243

I have a WinForms app in which I need to allow the user to click a phone icon and have the RingCentral softphone app open with the number in question auto populated. I have done this successfully, however, it autodials the number every time. The users do NOT want the RingCentral Phone desktop app to auto dial. Is this possible? If so, how?

1 Answers

The following URI Scheme will open the dialer and pre-fill the number but not dial:

rcmobile://dialer?number=<phone number>

For reference, the URI Scheme for launching the app and dialing is:

rcmobile://call?number=<phone number>

Related