Reputation: 43
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
Reputation: 17702
It's handled automatically. Use Eastern Standard Time
instead.
Upvotes: 1