GET api/Device/GetLastestApplicationVersion?Platform={Platform}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Platform

string

Required

Body Parameters

None.

Response Information

Resource Description

ResultModelOfApplicationVersionModel
NameDescriptionTypeAdditional information
Data

ApplicationVersionModel

None.

Status

boolean

None.

ErrorMessage

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "LastestVersion": "sample string 1",
    "LastestBuild": 2
  },
  "Status": true,
  "ErrorMessage": "sample string 2",
  "Message": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultModelOfApplicationVersionModelvM9xlXrP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PEASmartPlus.MobileService.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/PEASmartPlus.MobileService.Models.DeviceModels">
    <d2p1:LastestBuild>2</d2p1:LastestBuild>
    <d2p1:LastestVersion>sample string 1</d2p1:LastestVersion>
  </Data>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Message>sample string 3</Message>
  <Status>true</Status>
</ResultModelOfApplicationVersionModelvM9xlXrP>