POST api/device/gettime

Get Current Server Time in UTC

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Current UTC Server Time

Dictionary of string [key] and date [value]

Response Formats

application/json, text/json

Sample:
{
  "sample string 1": "2025-04-04T01:17:57.7284314+02:00",
  "sample string 3": "2025-04-04T01:17:57.7295916+02:00"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringdateTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringdateTime>
    <Key>sample string 1</Key>
    <Value>2025-04-04T01:17:57.7284314+02:00</Value>
  </KeyValueOfstringdateTime>
  <KeyValueOfstringdateTime>
    <Key>sample string 3</Key>
    <Value>2025-04-04T01:17:57.7295916+02:00</Value>
  </KeyValueOfstringdateTime>
</ArrayOfKeyValueOfstringdateTime>