GET api/Dealer/TimeZone?authKey={authKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| authKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DTimezone| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Zone | string |
None. |
|
| Place | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Zone": "sample string 2",
"Place": "sample string 3"
},
{
"Id": 1,
"Zone": "sample string 2",
"Place": "sample string 3"
}
]
text/html
Sample:
[{"Id":1,"Zone":"sample string 2","Place":"sample string 3"},{"Id":1,"Zone":"sample string 2","Place":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfDTimezone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dolphin.Areas.Dealer.Data">
<DTimezone>
<Id>1</Id>
<Place>sample string 3</Place>
<Zone>sample string 2</Zone>
</DTimezone>
<DTimezone>
<Id>1</Id>
<Place>sample string 3</Place>
<Zone>sample string 2</Zone>
</DTimezone>
</ArrayOfDTimezone>