Question

how to make a call of a any company extension number

  • 2 February 2024
  • 3 replies
  • 99 views

I want to make a call on a company extension number using webrtc

for example- this is a phone number 9544642902 and 4063 is the extension number


3 replies

I am also facing same problem

Userlevel 1

Can you just put an asterisk between the numbers. E.g. 9544642902*4063

session = webPhone.userAgent.invite('95486287401', {

fromNumber: null,

homeCountryId: '1'

});

console.log("session",session)


setTimeout( function () {

session = webPhone.userAgent.invite('95486287401*4150', {

fromNumber: null,

homeCountryId: '1'

})}, 20000); I want to make a call on company number how can I do that in ringcentral

Reply