Incorrect Timezone Returned from Graph API

Shaina Rosenthal 20 Reputation points
2025-05-16T02:34:53.64+00:00

I have a user whose timezone settings are set to UTC - 5 (Eastern Standard Time). When I make a call to Graph using the following endpoint /me/mailboxsettings/timezone, the timezone that is returned is Central Standard Time. Every place in the settings that I could think of has the timezone set to UTC - 5. Can someone advise if there is a default somewhere that I need to change?

/me/mailboxsettings/timezone
Microsoft Security Microsoft Entra Microsoft Entra ID
0 comments No comments
{count} votes

Accepted answer
  1. SrideviM 5,630 Reputation points Microsoft External Staff Moderator
    2025-05-19T09:25:17.1566667+00:00

    Hello Shaina Rosenthal,

    I understand you're seeing a mismatch where the user's time zone appears to be set correctly to UTC -5 (Eastern Standard Time), but the Microsoft Graph API still returns Central Standard Time when calling:

    GET https://graph.microsoft.com/v1.0/me/mailboxSettings/timezone
    

    User's image

    This happens because the API reflects only the time zone stored in the user's Exchange Online mailbox settings. It doesn’t automatically sync with what's configured in Outlook, Windows, or Entra ID.

    To check or fix this, the user can go to Outlook on the web, open SettingsGeneralLanguage and time, and review the time zone setting.

    User's image

    If it’s not set to Eastern Standard Time, it can be adjusted there directly.

    User's image

    Alternatively, you can update it via Graph API with this request:

    PATCH https://graph.microsoft.com/v1.0/me/mailboxSettings
    {
      "timeZone": "Eastern Standard Time"
    }
    

    User's image

    Once updated, the API will return the correct time zone.

    GET https://graph.microsoft.com/v1.0/me/mailboxSettings/timezone
    

    User's image

    For more details, you can refer to the official documentation:
    Update user mailbox settings - Microsoft Graph

    Hope this helps.


    If this answers your query, do click Accept Answer and Yes for was this answer helpful, which may help members with similar questions.

    User's image

    If you have any other questions or are still experiencing issues, feel free to ask in the "comments" section, and I'd be happy to help.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.