Skip to main content

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

I am also facing same problem


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