Postman 将Webhook添加到SharePoint列表

Postman 将Webhook添加到SharePoint列表,postman,webhooks,sharepoint-online,Postman,Webhooks,Sharepoint Online,我正在使用Postman将Webhook添加到SharePoint列表中,并且遇到权限问题: POST https://[Company].sharepoint.com/sites/Test/_api/web/lists('80105E8F-2CEA-4D49-8238-2A1829B46494')/subscriptions Body: { "resource": "https://[Company].sharepoint.com/sites/Test/_api/web/lists('8

我正在使用Postman将Webhook添加到SharePoint列表中,并且遇到权限问题:

POST https://[Company].sharepoint.com/sites/Test/_api/web/lists('80105E8F-2CEA-4D49-8238-2A1829B46494')/subscriptions

Body:
{
  "resource": "https://[Company].sharepoint.com/sites/Test/_api/web/lists('80105E8F-2CEA-4D49-8238-2A1829B46494')",
  "notificationUrl": "https://MyFunctions.azurewebsites.net/api/HttpTriggerCSharp1?code=[ClientCode]",
  "expirationDateTime": "2017-09-27T16:17:57+00:00"
}

Response:
{
    "error": {
        "code": "-2147024891, System.UnauthorizedAccessException",
        "message": {
            "lang": "en-US",
            "value": "Access denied. You do not have permission to perform this action or access this resource."
        }
    }
}
我是SharePoint网站集管理员,可以成功列出当前的WebHook(没有)。 我使用以下命令列出当前的Webhook:

GET https://[Company].sharepoint.com/sites/Test/_api/web/lists('80105E8F-2CEA-4D49-8238-2A1829B46494')/subscriptions

Response:
{
    "d": {
        "results": []
    }
}

这有“azure功能”标签,但问题似乎与azure功能无关。你应该去掉那个标签吗?