Reference for https://p21soa.ciot.com/formsandreporting/api/document/ping
This performs a ping against the service endpoint to determine availability. This can be helpful to check service availability prior to making service calls.
Url: https://p21soa.ciot.com/formsandreporting/api/document/ping
HTTP Method: GET
Message direction | Format | Body |
---|---|---|
Request | N/A | The Request body is empty. |
Response | Xml | Example,Schema |
The following is an example response Xml body:
<PingResponse> <ResponseMessage>String content</ResponseMessage> </PingResponse>
The following is the response Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="PingResponse" nillable="true" type="PingResponse" /> <xs:complexType name="PingResponse"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="1" name="ResponseMessage" type="xs:string" /> </xs:sequence> </xs:complexType> </xs:schema>