GET v1/Ping/Get

Simple connectivity test to confirm you can connect to the API and have set up the authentication headers properly.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "message": "sample string 1",
  "errorOccurred": false,
  "errorMessages": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ],
  "request": {
    "sdkVersion": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<PingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorMessages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
    <d2p1:string>sample string 3</d2p1:string>
  </ErrorMessages>
  <ErrorOccurred>false</ErrorOccurred>
  <Request>
    <SdkVersion>sample string 1</SdkVersion>
  </Request>
  <Message>sample string 1</Message>
</PingResponse>