Reference for https://rest.interfax.net/tests/date?d={D}

Url: https://rest.interfax.net/tests/date?d={D}

HTTP Method: GET

Message direction Format Body
Request N/A The Request body is empty.
Response Xml Example,Schema
Response Json Example

The following is an example response Xml body:

<dates>
  <local>1999-05-31T11:20:00</local>
  <utc>1999-05-31T11:20:00</utc>
  <s>String content</s>
</dates>

The following is an example response Json body:

{
	"local":"\/Date(928149600000+0000)\/",
	"utc":"\/Date(928149600000+0000)\/",
	"s":"String content"
}

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="dates" nillable="true" type="dates" />
  <xs:complexType name="dates">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="local" type="xs:dateTime" />
      <xs:element minOccurs="1" maxOccurs="1" name="utc" type="xs:dateTime" />
      <xs:element minOccurs="0" maxOccurs="1" name="s" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>