PUT api/Ping

Request Information

URI Parameters

None.

Body Parameters

PingRequest
NameDescriptionTypeAdditional information
UrlAddress

string

None.

SecurityToken

globally unique identifier

None.

CustomerId

globally unique identifier

None.

UniqueIdDispositivo

globally unique identifier

None.

Ambiente

string

None.

DataBaseLogicalName

string

None.

ApiAppName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UrlAddress": "sample string 1",
  "SecurityToken": "d56c558e-3373-4d45-a56f-2d71c39ce9dc",
  "CustomerId": "01c8ac3e-2561-41bb-99e9-bf8d8b65aeb4",
  "UniqueIdDispositivo": "213fc376-3e80-4263-ab5b-03b1a9893412",
  "Ambiente": "sample string 4",
  "DataBaseLogicalName": "sample string 5",
  "ApiAppName": "sample string 6"
}

application/xml, text/xml

Sample:
<PingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XmaintServices.Models">
  <Ambiente>sample string 4</Ambiente>
  <ApiAppName>sample string 6</ApiAppName>
  <CustomerId>01c8ac3e-2561-41bb-99e9-bf8d8b65aeb4</CustomerId>
  <DataBaseLogicalName>sample string 5</DataBaseLogicalName>
  <SecurityToken>d56c558e-3373-4d45-a56f-2d71c39ce9dc</SecurityToken>
  <UniqueIdDispositivo>213fc376-3e80-4263-ab5b-03b1a9893412</UniqueIdDispositivo>
  <UrlAddress>sample string 1</UrlAddress>
</PingRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PingRequest'.

Response Information

Resource Description

PingResult
NameDescriptionTypeAdditional information
ReplyTimeMilliSec

integer

None.

Status

string

None.

SecurityToken

globally unique identifier

None.

CustomerId

globally unique identifier

None.

ErrorMessage

string

None.

AuthorizationErrorMessage

string

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ReplyTimeMilliSec": 1,
  "Status": "sample string 2",
  "SecurityToken": "b545995d-ec8d-47d4-9811-77ce15bc08b2",
  "CustomerId": "814099b5-3046-4d2b-98c8-bd9c0e232c49",
  "ErrorMessage": "sample string 5",
  "AuthorizationErrorMessage": "sample string 6",
  "Success": true
}

application/xml, text/xml

Sample:
<PingResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XmaintServices.Models">
  <AuthorizationErrorMessage>sample string 6</AuthorizationErrorMessage>
  <CustomerId>814099b5-3046-4d2b-98c8-bd9c0e232c49</CustomerId>
  <ErrorMessage>sample string 5</ErrorMessage>
  <SecurityToken>b545995d-ec8d-47d4-9811-77ce15bc08b2</SecurityToken>
  <Success>true</Success>
  <ReplyTimeMilliSec>1</ReplyTimeMilliSec>
  <Status>sample string 2</Status>
</PingResult>