I am working on a provisioning solution for RingCentral. I understand how to create users in RingCentral.
What I would like is when someone creates a user or changes extension settings in RingCentral to get a notification sent to my app so I can link them. This way I would have a bidirectional flow of user information.
Subscribe for the Extension List Event described here:
https://developers.ringcentral.com/api-reference/Extension-List-Event
The general event filter is as follows:
/restapi/v1.0/account/{accountId}/extensionIf you are subscribing for yourself, i.e. the authorizer of the access token being used, you can use the following short notation:
/restapi/v1.0/account/~/extensionUse this event filter with the Create Subscription API:
https://developers.ringcentral.com/api-reference/Subscriptions/createSubscription
You can also subscribe for a specific extension (user) id.
Here's an excerpt of what this covers: