Skip to main content
Solved

Dial a Phone Number in field with Ring Central

  • June 25, 2020
  • 2 replies
  • 36 views

I am looking to create a button that will dial a number in a separate field with Ring Central.

The URL I have for a standard dial is “rcmobile://call?number=+16194039535” however I’m not sure how to specify that instead of the number I want it to dial the number that is shown in the {Phone Number} field.

I’ve tried various combinations at this point. Any suggestions?

Best answer by Jeremy_Oglesby

In the “URL formula” section, just concatenate(&) the first part of your URL string with the contents of your {Phone Number} field, like this:

'rcmobile://call?number=+' & {Phone Number}

2 replies

Forum|alt.badge.img+18

In the “URL formula” section, just concatenate(&) the first part of your URL string with the contents of your {Phone Number} field, like this:

'rcmobile://call?number=+' & {Phone Number}

  • Author
  • New Participant
  • June 26, 2020

In the “URL formula” section, just concatenate(&) the first part of your URL string with the contents of your {Phone Number} field, like this:

'rcmobile://call?number=+' & {Phone Number}

Perfect. Thank you for your help!