Questions tagged [microsoft-graph-webhooks]

Microsoft Graph Webhooks refers to the subscription APIs in Microsoft Graph. This tag should always be used in conjunction with the [microsoft-graph] tag.

12 questions
6
votes
1 answer

Microsoft Graph Subscription ExtensionError - Delete / Update

Issue I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox. The subscription has a scheduled task that renews the subscription's expiration…
2
votes
1 answer

Is it possible to get real time update for updates via microsoft graph webhooks?

I am trying to get the updates on SharePoint using MS graph webhooks. I am using the following API to subscribe POST https://graph.microsoft.com/v1.0/subscriptions Content-type: application/json { "changeType": "updated", "notificationUrl":…
2
votes
1 answer

Microsoft Graph API: No web-hooks for some emails

We use Microsoft Graph to subscribe to webhooks from emails. Additionally, as a backup procedure we also crawl the messages directly. We crawl around 5 million emails a day, and we see that each day consistently around 1%-2% of these emails are not…
1
vote
0 answers

Delay in change notification for channel messages in Microsoft Teams

We implemented the change notifications subscription for channel messages as per the Microsoft Teams guidelines. We received the messages within 1 minute until 12-July-2021. Now we see a latency of about 2 - 15 minutes for sometimes notably on PST…
1
vote
1 answer

Can't create a subscription to a group calendar's event in app-only

In one of my solutions I intended to create a Microsoft Graph subscription to a group calendar events resource from an Azure Function authenticated with app client credentials Permissions granted to the app principal are Calendars.ReadWrite and…
0
votes
0 answers

Is there a way to get external headers in the email replies webhook from the GraphAPI when the original Emails are sent through Sendgrid?

Hi all I have a problem with my Outlook API integration. I have a complex case of mixed email threads, I am receiving emails as replies from Outlook's graph API on my app's webhook and the conversation ID of each email is the same. However, the…
0
votes
1 answer

Microsoft Graph Creating Subscription When A New User Created

First, I subscribed to receive notifications when users are updated, and I received notifications when I updated any user. However, my problem is that when I change the ChangeType to "created" I expected to receive notifications when a new user is…
0
votes
1 answer

Is there any way to create/update/delete event in Outlook using Graph api without sending webhook notification even when subscribed

If i create/update any event using graph API, microsoft will send a notification to subscribed webhook. How can i identify that the notification is of same updated event by graph API, so that I can ignore it and don't do any action on the event.
0
votes
2 answers

Create Microsoft Graph Api Subscription for accept/reject meeting event by attendees

In my project, I have created Rest API project to create subscription and to listen notification from Microsoft Graph API. I want subscription for following things: When I create meeting room event then I want to get notification if any attendees…
0
votes
1 answer

How does one give consent to be subscribed via Microsoft Graph Webhook API?

I'm currently looking at this https://learn.microsoft.com/en-us/graph/webhooks#subscription-request-example which for convenience I'll provide a screenshot of below and the highlighted part confuses me. How exactly does someone go about giving my…
0
votes
1 answer

Webhook Subscription for Teams Conversation not working with WCF Relay

Can someone please help me to fix this Issue. I am not able to debug from where it is going wrong. Basically I have created a WCF Rest API WebService using WCF Relay in Azure to have hybrid connection between on-premise and Azure. Also if I am…
Tanuj
  • 53
  • 1
  • 8
0
votes
0 answers

Push Notification using REST API in outlook

I tried to get subscription for push notification Here is the code `def subscribe(access_token): url = graph_endpoint.format('/subscriptions') d = {"changeType": "updated","notificationUrl": …