GET api/App/IsAppUpToDate/{Platform}/{PlatformVersion}/{Version}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Platform | string |
None. |
|
| PlatformVersion | string |
None. |
|
| Version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
IsAppUpToDateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsUpToDate | boolean |
None. |
|
| RecommendedAction | RecommendedAction |
None. |
Response Formats
application/json, text/json
Sample:
{
"isUpToDate": true,
"recommendedAction": "DoNothing"
}
application/xml, text/xml
Sample:
<IsAppUpToDateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bazookas.Medicine.Service.Models"> <IsUpToDate>true</IsUpToDate> <RecommendedAction>DoNothing</RecommendedAction> </IsAppUpToDateResponse>