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-19T11:22:51.5684031+00:00",
"id": "81ea4ef7-d0e1-42ab-945c-3ac6fc363d03",
"offset": 4.1,
"site_id": "14356807-c629-44b6-96d5-8fd4c5f8f9bb",
"start_date": "2026-01-19T11:22:51.5684031+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-19T11:22:51.5684031+00:00</end_date> <id>81ea4ef7-d0e1-42ab-945c-3ac6fc363d03</id> <offset>4.1</offset> <site_id>14356807-c629-44b6-96d5-8fd4c5f8f9bb</site_id> <start_date>2026-01-19T11:22:51.5684031+00:00</start_date> </SiteTimeZone>