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": "2024-09-19T10:17:56.0434839+02:00",
  "sample string 3": "2024-09-19T10:17:56.0434839+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>2024-09-19T10:17:56.0434839+02:00</Value>
  </KeyValueOfstringdateTime>
  <KeyValueOfstringdateTime>
    <Key>sample string 3</Key>
    <Value>2024-09-19T10:17:56.0434839+02:00</Value>
  </KeyValueOfstringdateTime>
</ArrayOfKeyValueOfstringdateTime>