Question

Where could i lookup my AccountID and ExtensionID

  • 31 January 2017
  • 2 replies
  • 2337 views

We are trying to pull incoming calls daily for each number and extension in our account in to our own dashboard. My programmers are telling me they need our AccountID and ExtensionID. Where can they get this to complete this project. Thanks!


2 replies

The best way to get your Account ID after you've received an access_token is to use send a GET request to /restapi/v1.0/account/~

This will return the account information for the authenticated user. Here are the docs: https://developers.ringcentral.com/api-docs/latest/index.html#!#RefAccountInfo.html


The best way to get your Extension ID after you've received an access_token is to send a GET request to /restapi/v1.0/account/~/extension/~

This will return the extension information for the authenticated user. Here are the docs: https://developers.ringcentral.com/api-docs/latest/index.html#!#RefGetExtensionInfo
And by the way send a GET request to /restapi/v1.0/account/~/extension to get a list of the extensions in your account.

Reply