Question

How to get caller info (caller ID and called Nr.) from telephony presence events?

  • 24 June 2015
  • 4 replies
  • 1105 views

  • Participating Frequently
  • 9 replies

Whenever you want to be able to find out the Caller ID or the number being called during the progress of a call you can use this example:

var subscription = rcsdk.getSubscription();
 subscription.on(subscription.events.notification, function(msg) {
       console.log(msg.body.activeCalls[n].from); // activeCalls is array
        console.log(msg.body.activeCalls[n].to);
   })
    .register({
       events: ['/account/~/extension/~/presence?detailedTelephonyState=true'],
   })
    .then(...);

4 replies

Please can you provide an example as how I can achieve this via PHP/MySQL system.
Thanks
Hi,
TT
As I can see there is no such rcsdk.getSubscription(); method found in C# sdk . Am i missing something or Please guide me which SDk i have to use
Hi,
TT
As I can see there is no such rcsdk.getSubscription(); method found in C# sdk . Am i missing something or Please guide me which SDk i have to use
If you are using the C# SDK, it is recommended to ask questions pertaining to it using the Github Issue tracker for the associated repository. In the case of the C# SDK, that is here: https://github.com/ringcentral/ringcentral-csharp/issues

Reply