Skip to main content
Version: On prem: 14.0.16

Omada Identity Graph API datetimes

For Omada Identity Graph API version 2.3 consumers, the user's selected timezone is now available in the API. All datetimes will be in the UTC time standard. You can convert the time using the following query and the baseUtcOffsetInMinutes property:

Sample query:

query MyQuery {
  userSettings {
    timeZone {
      standardName
      baseUtcOffsetInMinutes
      name
    }
  }
}

Sample result:

{
  "data": {
    "userSettings": {
      "timeZone": {
        "standardName": "US Mountain Standard Time",
        "baseUtcOffsetInMinutes": 420,
        "name": "(UTC-07:00) Arizona"
      }
    }
  }
}