Outlook Push Notifications REST API - Missed Changetype












1















I have implemented calendar syncing with our internal CRM using the Outlook REST (v2) API. I am using Push Notifications (Webhooks) to push Office 365 calendar changes back into our CRM.



I am seeing a large number of "Missed" notifications. eg



{
"value": [
{
"@odata.type": "#Microsoft.OutlookServices.Notification",
"Id": null,
"SubscriptionId": "xxxxxxx",
"SubscriptionExpirationDateTime": "2018-11-21T11:12:10Z",
"SequenceNumber": 1,
"ChangeType": "Missed"
}
]
}


This is the basic flow of events:
• User creates a Calendar event in our CRM
• This event is created in the Users Outlook calendar
• A subscription event (https://outlook.office.com/api/v2.0/users/{User}/subscriptions) is created for this users calendar to “monitor” any Updated or Deleted actions for these Calendar event. Any events that have not been created by the CRM are ignored and are not monitored. I am also not monitoring any Created events.
• When the user Updates or Deletes a monitored event outlook will call our webhook
• When the webhook receives the event it will sync the changed event



However, the "Missed" notifications are generally more than the "Updated" notifications. I am seeing (on average) 150 Missed events and only 50 Updated Events.



Why do we have so many missed events?



How can I debug this to identify why we are getting Missed events?



Thanks.










share|improve this question

























  • A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

    – Bruce
    Nov 26 '18 at 9:04













  • Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

    – CB4
    Nov 26 '18 at 9:36













  • I expect the occasional Missed notification, not the hundreds I am seeing.

    – CB4
    Nov 26 '18 at 9:38
















1















I have implemented calendar syncing with our internal CRM using the Outlook REST (v2) API. I am using Push Notifications (Webhooks) to push Office 365 calendar changes back into our CRM.



I am seeing a large number of "Missed" notifications. eg



{
"value": [
{
"@odata.type": "#Microsoft.OutlookServices.Notification",
"Id": null,
"SubscriptionId": "xxxxxxx",
"SubscriptionExpirationDateTime": "2018-11-21T11:12:10Z",
"SequenceNumber": 1,
"ChangeType": "Missed"
}
]
}


This is the basic flow of events:
• User creates a Calendar event in our CRM
• This event is created in the Users Outlook calendar
• A subscription event (https://outlook.office.com/api/v2.0/users/{User}/subscriptions) is created for this users calendar to “monitor” any Updated or Deleted actions for these Calendar event. Any events that have not been created by the CRM are ignored and are not monitored. I am also not monitoring any Created events.
• When the user Updates or Deletes a monitored event outlook will call our webhook
• When the webhook receives the event it will sync the changed event



However, the "Missed" notifications are generally more than the "Updated" notifications. I am seeing (on average) 150 Missed events and only 50 Updated Events.



Why do we have so many missed events?



How can I debug this to identify why we are getting Missed events?



Thanks.










share|improve this question

























  • A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

    – Bruce
    Nov 26 '18 at 9:04













  • Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

    – CB4
    Nov 26 '18 at 9:36













  • I expect the occasional Missed notification, not the hundreds I am seeing.

    – CB4
    Nov 26 '18 at 9:38














1












1








1








I have implemented calendar syncing with our internal CRM using the Outlook REST (v2) API. I am using Push Notifications (Webhooks) to push Office 365 calendar changes back into our CRM.



I am seeing a large number of "Missed" notifications. eg



{
"value": [
{
"@odata.type": "#Microsoft.OutlookServices.Notification",
"Id": null,
"SubscriptionId": "xxxxxxx",
"SubscriptionExpirationDateTime": "2018-11-21T11:12:10Z",
"SequenceNumber": 1,
"ChangeType": "Missed"
}
]
}


This is the basic flow of events:
• User creates a Calendar event in our CRM
• This event is created in the Users Outlook calendar
• A subscription event (https://outlook.office.com/api/v2.0/users/{User}/subscriptions) is created for this users calendar to “monitor” any Updated or Deleted actions for these Calendar event. Any events that have not been created by the CRM are ignored and are not monitored. I am also not monitoring any Created events.
• When the user Updates or Deletes a monitored event outlook will call our webhook
• When the webhook receives the event it will sync the changed event



However, the "Missed" notifications are generally more than the "Updated" notifications. I am seeing (on average) 150 Missed events and only 50 Updated Events.



Why do we have so many missed events?



How can I debug this to identify why we are getting Missed events?



Thanks.










share|improve this question
















I have implemented calendar syncing with our internal CRM using the Outlook REST (v2) API. I am using Push Notifications (Webhooks) to push Office 365 calendar changes back into our CRM.



I am seeing a large number of "Missed" notifications. eg



{
"value": [
{
"@odata.type": "#Microsoft.OutlookServices.Notification",
"Id": null,
"SubscriptionId": "xxxxxxx",
"SubscriptionExpirationDateTime": "2018-11-21T11:12:10Z",
"SequenceNumber": 1,
"ChangeType": "Missed"
}
]
}


This is the basic flow of events:
• User creates a Calendar event in our CRM
• This event is created in the Users Outlook calendar
• A subscription event (https://outlook.office.com/api/v2.0/users/{User}/subscriptions) is created for this users calendar to “monitor” any Updated or Deleted actions for these Calendar event. Any events that have not been created by the CRM are ignored and are not monitored. I am also not monitoring any Created events.
• When the user Updates or Deletes a monitored event outlook will call our webhook
• When the webhook receives the event it will sync the changed event



However, the "Missed" notifications are generally more than the "Updated" notifications. I am seeing (on average) 150 Missed events and only 50 Updated Events.



Why do we have so many missed events?



How can I debug this to identify why we are getting Missed events?



Thanks.







webhooks office365api






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 20:16









dmulter

1,4593918




1,4593918










asked Nov 23 '18 at 8:32









CB4CB4

61




61













  • A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

    – Bruce
    Nov 26 '18 at 9:04













  • Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

    – CB4
    Nov 26 '18 at 9:36













  • I expect the occasional Missed notification, not the hundreds I am seeing.

    – CB4
    Nov 26 '18 at 9:38



















  • A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

    – Bruce
    Nov 26 '18 at 9:04













  • Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

    – CB4
    Nov 26 '18 at 9:36













  • I expect the occasional Missed notification, not the hundreds I am seeing.

    – CB4
    Nov 26 '18 at 9:38

















A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

– Bruce
Nov 26 '18 at 9:04







A Missed notification occurs when the notifications service cannot send the requested notification. Have you check these links? docs.microsoft.com/en-us/previous-versions/office/…. stackoverflow.com/questions/39320562/….

– Bruce
Nov 26 '18 at 9:04















Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

– CB4
Nov 26 '18 at 9:36







Yes I have "A Missed notification occurs when the notifications service cannot send the requested notification." But why can't it send a notification? Any Debugging to determine why? I am getting hundreds more missed then Updated notifications. If this is the case then webhooks are not very reliable for this service. I will end up doing delta Syncs constantly.

– CB4
Nov 26 '18 at 9:36















I expect the occasional Missed notification, not the hundreds I am seeing.

– CB4
Nov 26 '18 at 9:38





I expect the occasional Missed notification, not the hundreds I am seeing.

– CB4
Nov 26 '18 at 9:38












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443096%2foutlook-push-notifications-rest-api-missed-changetype%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443096%2foutlook-push-notifications-rest-api-missed-changetype%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]