-
Notifications
You must be signed in to change notification settings - Fork 130
Description
[X ] Question
[ ] Bug
[X ] Enhancement
Expected or Desired Behavior
Id like to be able to create a subscription to a sharepoint list so as to recieve notifications from it, however i do not want to recieve notifications from webhooks when i create/update/delete an item on that list. I would like to tell the webhook subscription to be supressed or ignored sending a postback to my api.
Observed Behavior
My api writes to sharepoint, and webhooks posts back to my api. I only webhook to run when a list is changed at sharepoint end. Not when my api makes changes to sharepoint.
If microsoft answer is (sorry this is defaultbehavior)
Then please take this as suggestion
Suggestion: add additional property onto graph client for sharepoint so as to be able to supress subscription webhook for that individual post.
Something like { 'suppress_payload' : true } to be included in the post payload to sharepoint.
I hope this makes sense?
I just dont want to receieve a webhook notification that my api has to process for every CUD action i take as, i already know about the action... my api did the action, so i dont need an notice on something my api did.
Cheers