使用REST API的Azure API管理的通知列表

时间:2017-04-20 15:35:23

标签: rest powershell azure azure-api-management

有人知道是否可以通过REST API将电子邮件地址添加到Azure API管理的通知列表中?具体来说,我希望能够添加到"接近订阅配额限制"。我发现有一种方法可以在UI中执行此操作,但我正在寻找通过REST调用或PowerShell命令行开关(如果可能)执行此操作的方法。

2 个答案:

答案 0 :(得分:1)

我刚收到微软的回复。事实证明,目前只能通过UI将电子邮件地址添加到通知列表中。

答案 1 :(得分:1)

文档仍在进行中,可能会有所改变,但简而言之:

GET / notifications - 获取系统中所有通知的列表

GET / notifications / {nid}获得单一通知

GET / notifications / {nid} / recipients - 获取单个通知的收件人列表

获取/通知/ {nid} /收件人/电子邮件 - 获取订阅通知的电子邮件收件人列表

GET / notifications / {nid} / recipients / users-获取订阅通知的用户收件人列表

GET / HEAD / PUT / DELETE / notifications / {nid} / recipients / emails / {email} - 获取/管理单个电子邮件收件人

GET / HEAD / PUT / DELETE / notifications / {nid} / recipients / users / {user} - 获取/管理单个用户收件人