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:24:01.1850013+00:00",
"id": "b2d353ac-864e-4fec-959e-50e0f178d05b",
"offset": 4.1,
"site_id": "4c68b2c2-8986-4e5d-bdb4-b60b49f90337",
"start_date": "2026-01-19T09:24:01.1850013+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:24:01.1850013+00:00</end_date> <id>b2d353ac-864e-4fec-959e-50e0f178d05b</id> <offset>4.1</offset> <site_id>4c68b2c2-8986-4e5d-bdb4-b60b49f90337</site_id> <start_date>2026-01-19T09:24:01.1850013+00:00</start_date> </SiteTimeZone>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
globally unique identifierResponse Formats
application/json, text/json
Sample:
"76e30754-5c37-45f0-a856-42b94e87ab12"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">76e30754-5c37-45f0-a856-42b94e87ab12</guid>