GET Provider/Ping

Ping from the Provider's device.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResultPing
NameDescriptionTypeAdditional information
OtherPartyOffline

boolean

None.

Killed

boolean

None.

Serviced

boolean

None.

InterpreterName

string

None.

InterpreterID

string

None.

RequestTransferNeedConfirm

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "OtherPartyOffline": true,
  "Killed": true,
  "Serviced": true,
  "InterpreterName": "sample string 1",
  "InterpreterID": "sample string 2",
  "RequestTransferNeedConfirm": true
}

application/xml, text/xml

Sample:
<ResultPing xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <InterpreterID>sample string 2</InterpreterID>
  <InterpreterName>sample string 1</InterpreterName>
  <Killed>true</Killed>
  <OtherPartyOffline>true</OtherPartyOffline>
  <RequestTransferNeedConfirm>true</RequestTransferNeedConfirm>
  <Serviced>true</Serviced>
</ResultPing>