GET v1/Version/Get
Get the current version of the API.
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:
<VersionResponse 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>
</VersionResponse>