POST v1/api/AppInfo

Request Information

URI Parameters

None.

Body Parameters

AppRequest
NameDescriptionTypeAdditional information
ProjectURL

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectURL": "sample string 1"
}

application/xml, text/xml

Sample:
<ApplicationModel.AppRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models">
  <ProjectURL>sample string 1</ProjectURL>
</ApplicationModel.AppRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppResponse
NameDescriptionTypeAdditional information
Version

string

None.

VersionCode

string

None.

AppPath

string

None.

Status

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "sample string 1",
  "VersionCode": "sample string 2",
  "AppPath": "sample string 3",
  "Status": true,
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<ApplicationModel.AppResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models">
  <Message>sample string 5</Message>
  <Status>true</Status>
  <AppPath>sample string 3</AppPath>
  <Version>sample string 1</Version>
  <VersionCode>sample string 2</VersionCode>
</ApplicationModel.AppResponse>