Return the system information for the API setup. INPUTS ==> (none). RETURN ==> TIME ZONES
None.
None.
| Name | Description | Type | Additional information |
|---|---|---|---|
| TimeZones |
List of time zones in the system |
Collection of TimeZoneModel |
None. |
None.
None.
{
"TimeZones": [
{
"Offset": 1,
"DisplayName": "sample string 2",
"StandardName": "sample string 3"
},
{
"Offset": 1,
"DisplayName": "sample string 2",
"StandardName": "sample string 3"
}
]
}
<TimeZoneListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaG.API.Models.Responses">
<TimeZones>
<TimeZoneModel>
<DisplayName>sample string 2</DisplayName>
<Offset>1</Offset>
<StandardName>sample string 3</StandardName>
</TimeZoneModel>
<TimeZoneModel>
<DisplayName>sample string 2</DisplayName>
<Offset>1</Offset>
<StandardName>sample string 3</StandardName>
</TimeZoneModel>
</TimeZones>
</TimeZoneListResponse>