GET api/2.0/settings/timezones
Returns a list of all the available portal time zones.
This method doesn't have any parameters.
GET api/2.0/settings/timezones
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of all the available time zones with their IDs and display names
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>