POST api/sitetimezoneapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
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 |
Request Formats
application/json, text/json
Sample:
{
"active": true,
"end_date": "2026-01-19T09:38:24.3767502+00:00",
"id": "30e6b882-3735-43a2-a0ed-0be1c9d29cac",
"offset": 4.1,
"site_id": "9e191bf2-ecd0-40e6-b8c7-580fa4d2050c",
"start_date": "2026-01-19T09:38:24.3767502+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:38:24.3767502+00:00</end_date> <id>30e6b882-3735-43a2-a0ed-0be1c9d29cac</id> <offset>4.1</offset> <site_id>9e191bf2-ecd0-40e6-b8c7-580fa4d2050c</site_id> <start_date>2026-01-19T09:38:24.3767502+00:00</start_date> </SiteTimeZone>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"d3d47bbe-82d2-4489-87c7-b8529d089ffb"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">d3d47bbe-82d2-4489-87c7-b8529d089ffb</guid>