GET api/AppVersion?appname={appname}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appname | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of VersionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OS | string |
None. |
|
| APP_NAME | string |
None. |
|
| VERSION_CODE | integer |
None. |
|
| VERSION_NAME | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"OS": "sample string 1",
"APP_NAME": "sample string 2",
"VERSION_CODE": 3,
"VERSION_NAME": "sample string 4"
},
{
"OS": "sample string 1",
"APP_NAME": "sample string 2",
"VERSION_CODE": 3,
"VERSION_NAME": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfVersionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
<VersionModel>
<APP_NAME>sample string 2</APP_NAME>
<OS>sample string 1</OS>
<VERSION_CODE>3</VERSION_CODE>
<VERSION_NAME>sample string 4</VERSION_NAME>
</VersionModel>
<VersionModel>
<APP_NAME>sample string 2</APP_NAME>
<OS>sample string 1</OS>
<VERSION_CODE>3</VERSION_CODE>
<VERSION_NAME>sample string 4</VERSION_NAME>
</VersionModel>
</ArrayOfVersionModel>