aditya arun
aditya arun

Reputation: 43

Microsoft graph returning bad request when creating event in daylight savings time

I am trying to create an event using Microsoft Graph API. I am getting the following error.

{
  "error": {
    "code": "TimeZoneNotSupportedException",
    "message": "A valid TimeZone value must be specified. The following TimeZone value is not supported: 'Eastern Daylight Time'.",
    "innerError": {
      "date": "<Date>",
      "request-id": "<RequestID GUID>"
    }
  }
}

How to handle daylight savings time in Microsoft Graph?

Upvotes: 1

Views: 352

Answers (1)

Jason Johnston
Jason Johnston

Reputation: 17702

It's handled automatically. Use Eastern Standard Time instead.

Upvotes: 1

Related Questions