Get Started
API backend
API system
More information

GET api/2.0/settings/timezones This function requires authentication

Description

Returns a list of all the available portal time zones.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/timezones
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of all the available time zones with their IDs and display names

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "some text",
      "DisplayName": "some text"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>some text</Id>
    <DisplayName>some text</DisplayName>
  </response>
</result>