RingCentral 可以发送新用户创建的通知吗?然后可能扩展更改?
Can RingCentral send notifications of new user creates? And then possibly Extension changes?
我正在研究 RingCentral 的配置解决方案。我了解如何在 RingCentral 中创建用户。
我想要的是,当有人在 RingCentral 中创建用户或更改扩展程序设置以将通知发送到我的应用程序时,我可以 link 他们。这样我就有了双向的用户信息流。
订阅此处描述的扩展列表事件:
https://developers.ringcentral.com/api-reference/Extension-List-Event
通用事件过滤器如下:
/restapi/v1.0/account/{accountId}/extension
如果您是为自己订阅,即正在使用的访问令牌的授权者,您可以使用以下简短表示法:
/restapi/v1.0/account/~/extension
将此事件过滤器与创建订阅一起使用 API:
https://developers.ringcentral.com/api-reference/Subscriptions/createSubscription
您还可以订阅特定的分机(用户)id。
以下是本文内容的摘录:
Event filter /restapi/v1.0/account/{accountId}/extension
enables notifications in case of extension list changes:
- addition/removal of extensions to/from account
- contact info (first/last name; company name; email; business phone; business address)
status
- regional settings (timezone, home country, language, greeting language, formatting locale, time format)
- permissions (administrator permission, international calling)
- phone numbers (assign/unassign)
- departments (added to/removed from)
- service features (for the current extension only) - SMS/SMSReceiving, Pager/PagerReceiving, Fax/FaxReceiving, Voicemail, EncryptionAtRest, BlockedMessageForwarding, DnD, RingOut, InternationalCalling, Presence, Conferencing, VoIPCalling, CallPark, OnDemandCallRecording
The updated extension data is accessible by calling the methods Get Extension List and/or Get Extension Info
我正在研究 RingCentral 的配置解决方案。我了解如何在 RingCentral 中创建用户。
我想要的是,当有人在 RingCentral 中创建用户或更改扩展程序设置以将通知发送到我的应用程序时,我可以 link 他们。这样我就有了双向的用户信息流。
订阅此处描述的扩展列表事件:
https://developers.ringcentral.com/api-reference/Extension-List-Event
通用事件过滤器如下:
/restapi/v1.0/account/{accountId}/extension
如果您是为自己订阅,即正在使用的访问令牌的授权者,您可以使用以下简短表示法:
/restapi/v1.0/account/~/extension
将此事件过滤器与创建订阅一起使用 API:
https://developers.ringcentral.com/api-reference/Subscriptions/createSubscription
您还可以订阅特定的分机(用户)id。
以下是本文内容的摘录:
Event filter
/restapi/v1.0/account/{accountId}/extension
enables notifications in case of extension list changes:
- addition/removal of extensions to/from account
- contact info (first/last name; company name; email; business phone; business address) status
- regional settings (timezone, home country, language, greeting language, formatting locale, time format)
- permissions (administrator permission, international calling)
- phone numbers (assign/unassign)
- departments (added to/removed from)
- service features (for the current extension only) - SMS/SMSReceiving, Pager/PagerReceiving, Fax/FaxReceiving, Voicemail, EncryptionAtRest, BlockedMessageForwarding, DnD, RingOut, InternationalCalling, Presence, Conferencing, VoIPCalling, CallPark, OnDemandCallRecording The updated extension data is accessible by calling the methods Get Extension List and/or Get Extension Info