GET v1/Common/TimeZones

Gets all Time Zones.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list.

Collection of TimeZoneV1
NameDescriptionTypeAdditional information
TimeZoneId

The Time Zone Id.

integer

None.

DisplayName

The Display Name.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TimeZoneId": 1,
    "DisplayName": "sample string 2"
  },
  {
    "TimeZoneId": 1,
    "DisplayName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Common">
  <TimeZone>
    <DisplayName>sample string 2</DisplayName>
    <TimeZoneId>1</TimeZoneId>
  </TimeZone>
  <TimeZone>
    <DisplayName>sample string 2</DisplayName>
    <TimeZoneId>1</TimeZoneId>
  </TimeZone>
</ArrayOfTimeZone>