GET api/Data/IsDataUpToDate/{Version}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
IsDataUpToDateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsUpToDate | boolean |
Required |
|
| DownloadLocation | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"isUpToDate": true,
"downloadLocation": "sample string 2"
}
application/xml, text/xml
Sample:
<IsDataUpToDateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bazookas.Medicine.Service.Models"> <DownloadLocation>sample string 2</DownloadLocation> <IsUpToDate>true</IsUpToDate> </IsDataUpToDateResponse>