POST api/Service/CheckAppVersion

Request Information

URI Parameters

None.

Body Parameters

AppVersionRequest
NameDescriptionTypeAdditional information
Input

AppVersionInputModel

None.

Request Formats

application/json, text/json

Sample:
{
  "Input": {
    "Platform": "sample string 1",
    "Version": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<AppVersionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <Input>
    <Platform>sample string 1</Platform>
    <Version>sample string 2</Version>
  </Input>
</AppVersionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppVersionResponse
NameDescriptionTypeAdditional information
OutPut

AppVersionOutPutModel

None.

Response Formats

application/json, text/json

Sample:
{
  "OutPut": {
    "Success": true,
    "Message": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<AppVersionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
  <OutPut>
    <Message>sample string 2</Message>
    <Success>true</Success>
  </OutPut>
</AppVersionResponse>