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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Platform

string

Required

Body Parameters

None.

Response Information

Resource Description

ApplicationVersionResponseModel
NameDescriptionTypeAdditional information
LastestVersion

string

None.

LastestBuild

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "LastestVersion": "sample string 1",
  "LastestBuild": 2
}

application/xml, text/xml

Sample:
<ApplicationVersionResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PEALife.Model">
  <LastestBuild>2</LastestBuild>
  <LastestVersion>sample string 1</LastestVersion>
</ApplicationVersionResponseModel>

multipart/form-data

Sample:
<ApplicationVersionResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PEALife.Model"><LastestBuild>2</LastestBuild><LastestVersion>sample string 1</LastestVersion></ApplicationVersionResponseModel>