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?
Asked
Active
Viewed 261 times
1 Answers
0
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>

Grokify
- 15,092
- 6
- 60
- 81
-
This doesn't actually work. The dialer format opens the dialer but doesn't actually populate the "To" box with the number. Here is an example: http://jsfiddle.net/naufrhps/2/ – ericdc Sep 03 '19 at 21:31