GET api/sitetimezoneapi/sitetimezone/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SiteTimeZoneViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| end_date | date |
Required |
|
| id | globally unique identifier |
None. |
|
| offset | decimal number |
Required |
|
| site_id | globally unique identifier |
Required |
|
| start_date | date |
Required |
Response Formats
application/json, text/json
Sample:
{
"active": true,
"end_date": "2026-01-19T06:18:27.731072+00:00",
"id": "24a21236-49b6-4d41-95c8-db16fb022777",
"offset": 4.1,
"site_id": "5d358e56-986d-4df0-b11b-dfb92afa1a72",
"start_date": "2026-01-19T06:18:27.731072+00:00"
}
application/xml, text/xml
Sample:
<SiteTimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <end_date>2026-01-19T06:18:27.731072+00:00</end_date> <id>24a21236-49b6-4d41-95c8-db16fb022777</id> <offset>4.1</offset> <site_id>5d358e56-986d-4df0-b11b-dfb92afa1a72</site_id> <start_date>2026-01-19T06:18:27.731072+00:00</start_date> </SiteTimeZone>