FRAMES | NO FRAMES Description | Parameters | Response | Example
URL:http://server:port/arcgis/admin/info/getAvailableTimeZones
HTTP Method:GET
Parent Resource:Info
Required Privileges:Publisher or Administrator

Description

Returns an enumeration of all the time zones of which the server is aware. This is used by the GIS service publishing tools.

Parameters

Parameter Description
f The response format. The default response format is html.
Values: html | json

Response Format

{
	"timeZones": [
		{
			"displayname": "<display_name>",
			"windowsid": "<windows_id>",
		},
		...
	]		
}
			

Example

{
	"timeZones": [
  	{
    	"displayname": "(UTC+09:30) Darwin",
    	"windowsid": "AUS Central Standard Time"
  	},
  	{
    	"displayname": "(UTC+10:00) Canberra, Melbourne, Sydney",
    	"windowsid": "AUS Eastern Standard Time"
  	}
}