POST api/ApplicationVersion
Request Information
URI Parameters
None.
Body Parameters
ApplicationVersionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| VersionId | globally unique identifier |
None. |
|
| ApplicationId | globally unique identifier |
None. |
|
| ApplicationName | string |
None. |
|
| VersionNo | decimal number |
None. |
|
| ReleaseDate | string |
None. |
|
| EXEPath | string |
None. |
|
| Status | boolean |
None. |
|
| CreatedOn | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VersionId": "d9421819-f0e0-40d8-9dff-5d1671786468",
"ApplicationId": "36759067-ed4d-4285-8e83-6ca17beda9c8",
"ApplicationName": "sample string 3",
"VersionNo": 4.0,
"ReleaseDate": "sample string 5",
"EXEPath": "sample string 6",
"Status": true,
"CreatedOn": "sample string 8"
}
application/xml, text/xml
Sample:
<ApplicationVersionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EditPointService.Models"> <ApplicationId>36759067-ed4d-4285-8e83-6ca17beda9c8</ApplicationId> <ApplicationName>sample string 3</ApplicationName> <CreatedOn>sample string 8</CreatedOn> <EXEPath>sample string 6</EXEPath> <ReleaseDate>sample string 5</ReleaseDate> <Status>true</Status> <VersionId>d9421819-f0e0-40d8-9dff-5d1671786468</VersionId> <VersionNo>4</VersionNo> </ApplicationVersionModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |