How can I access all users through API? I have an admin user and I can see all users listed on UI when i logged in as a user in the Ringcentral portal.
When I want to achieve the same functionality through API, First I do not see any availability of 'client_credential' flow. I see only 'password' flow when I select no UI option.
When I call following API
https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/~
It gives only main admin user details with the extension. I was expecting all the extension details here.
If I pass extension explicitly then I can get data for other extensions (and assigned user) details. For example, if there are 2 extensions - 1234, 4567 - I need to call v1.0/account/~/extension/4567 to get the details.
My need is that I need to find active calls of a user based on email id. Active call details can be fetched for an extension only.
I was hoping to get all users' information - scan their email ids and find appropriate extension -> and then call the Active call API. I am stuck at getting all user information step only at this point.
Thanks in advance for any hint, please.