POST api/Lookups/GetAppVersion
Request Information
URI Parameters
None.
Body Parameters
GetAppVersionCommand| Name | Description | Type | Additional information |
|---|---|---|---|
| AppName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppName": "sample string 1"
}
application/xml, text/xml
Sample:
<GetAppVersionCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pronto.Core.Services.ServiceCommands"> <AppName>sample string 1</AppName> </GetAppVersionCommand>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppVersion| Name | Description | Type | Additional information |
|---|---|---|---|
| APP_NAME | string |
None. |
|
| VERSION | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"APP_NAME": "sample string 1",
"VERSION": "sample string 2"
}
application/xml, text/xml
Sample:
<AppVersion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pronto.Core.Entities"> <APP_NAME>sample string 1</APP_NAME> <VERSION>sample string 2</VERSION> </AppVersion>