GET v1/systemtime?client_time={client_time}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| client_time | date |
None. |
Body Parameters
None.
Response Information
Resource Description
SystemTimeInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Time | date |
None. |
|
| TimeZone | string |
None. |
|
| GMTOffset | decimal number |
None. |
|
| ClientOffset | integer |
None. |
|
| IanaTimeZone | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"time": "2025-10-31T23:33:08.845297-04:00",
"timeZone": "sample string 2",
"gmtOffset": 3.1,
"clientOffset": 1,
"ianaTimeZone": "sample string 4"
}
application/xml, text/xml
Sample:
<SystemTimeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.Controllers.api.v1"> <ClientOffset>1</ClientOffset> <GMTOffset>3.1</GMTOffset> <IanaTimeZone>sample string 4</IanaTimeZone> <Time>2025-10-31T23:33:08.845297-04:00</Time> <TimeZone>sample string 2</TimeZone> </SystemTimeInfo>