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-19T09:23:10.6174192+00:00",
"id": "5be05a2a-d5a0-4820-887c-e0bd25bd46d0",
"offset": 4.1,
"site_id": "c49f9bf1-f3c9-4cc8-97c6-5f7766f7e007",
"start_date": "2026-01-19T09:23:10.6174192+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-19T09:23:10.6174192+00:00</end_date> <id>5be05a2a-d5a0-4820-887c-e0bd25bd46d0</id> <offset>4.1</offset> <site_id>c49f9bf1-f3c9-4cc8-97c6-5f7766f7e007</site_id> <start_date>2026-01-19T09:23:10.6174192+00:00</start_date> </SiteTimeZone>