GET api/timezones

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

Max length: 100

STDLabel

string

Max length: 50

DSTLabel

string

Max length: 50

Bias

integer

None.

Links

Gets the links.

Collection of LinkModel

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TimeZoneViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

Max length: 100

STDLabel

string

Max length: 50

DSTLabel

string

Max length: 50

Bias

integer

None.

CurrentBias

integer

None.

Links

Gets the links.

Collection of LinkModel

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "stdLabel": "sample string 3",
    "dstLabel": "sample string 4",
    "bias": 5,
    "currentBias": 6
  },
  {
    "id": 1,
    "name": "sample string 2",
    "stdLabel": "sample string 3",
    "dstLabel": "sample string 4",
    "bias": 5,
    "currentBias": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfTimeZoneViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TelogWebAPI.Models">
  <TimeZoneViewModel>
    <Bias>5</Bias>
    <CurrentBias>6</CurrentBias>
    <DSTLabel>sample string 4</DSTLabel>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <STDLabel>sample string 3</STDLabel>
  </TimeZoneViewModel>
  <TimeZoneViewModel>
    <Bias>5</Bias>
    <CurrentBias>6</CurrentBias>
    <DSTLabel>sample string 4</DSTLabel>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <STDLabel>sample string 3</STDLabel>
  </TimeZoneViewModel>
</ArrayOfTimeZoneViewModel>