WebHook
It is possible to add a Webhook on a SharePoint Online list. The webhook can only be placed on a list when an API with a webhook endpoint is running. Go to: https://docs.microsoft.com/en-us/sharepoint/dev/apis/webhooks/overview-sharepoint-webhooks for more information. If you want to put multiple webhooks on a single list, each webhook must have a unique NotificationUrl.
1
2
3
4
5
6
|
<List Title="My Custom List" TemplateType="100" Url="Lists/WebhookList">
<Webhooks>
<Webhook NotificationUrl="https://0fe2d846.ngrok.io/api/spwebhook/handlerequest" ExpirationDateTime="2024-06-27T16:17:57+00:00" ClientState="TestWebhook"></Webhook>
<Webhook NotificationUrl="https://506c83e5.ngrok.io/api/spwebhook/handlerequest" ExpirationDateTime="2024-07-27T16:17:57+00:00" ClientState="TestWebhookTwo"></Webhook>
</Webhooks>
</List>
|