2
votes

I'm using Microsoft Graph API for track my changes in some events in a calendar. Currently, I get an HTTP 503 error in the endpoint: /me/calendarView/delta.

{
    "error": {
        "code": "ErrorServiceUnavailable",
        "message": "Active Directory operation did not succeed. Try again later.",
        "innerError": {
            "request-id": "0d70abca-dba6-4c27-9e99-2fa6cc6eb731",
            "date": "2018-10-09T13:27:46"
        }
    }
}

I thought it was my client, but I tried the example request on Microsoft Graph Explorer and I got the same. Anyone has faced the same issue? Thanks for your guidance.

1
I have tried this, and it works. And my request URL like this:https://graph.microsoft.com/v1.0/me/calendarView/delta?startDateTime=2016-12-01T00:00:00Z&endDateTime=2018-12-30T00:00:00Z - Keen Jin
I tried the same request and it didn't work for me. I got the same error "ErrorServiceUnavailable" - navila
To clarify, are you seeing the error in Graph Explorer when signed in as your account and running the sample for Delta. - Jeremy Thake MSFT
That's correct. I see the error running the sample request signed in with my personal account - navila

1 Answers

2
votes

I can't upvote this or comment on this due to the reputation limit but we are seeing the same issue with some of our users.

We are hitting the endpoint: https://graph.microsoft.com/v1.0/me/mailFolders/<redacted>/messages/delta

For this particular user, https://graph.microsoft.com/v1.0/me/mailFolders and https://graph.microsoft.com/v1.0/me/mailFolders/<redacted>/childFolders work.

But, asking for the messages with https://graph.microsoft.com/v1.0/me/mailFolders/<redacted>/messages/delta for a folder returns the error posted by OP