POST api/appversion/versions
Request Information
URI Parameters
None.
Body Parameters
CreateAppVersionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AppId | string |
Required String length: inclusive between 0 and 10 |
|
| AppName | string |
Required String length: inclusive between 0 and 50 |
|
| Platform | string |
Required String length: inclusive between 0 and 20 |
|
| TestVersion | string |
String length: inclusive between 0 and 20 |
|
| ProductionVersion | string |
String length: inclusive between 0 and 20 |
|
| MinimumVersion | string |
String length: inclusive between 0 and 20 |
|
| TestDate | date |
None. |
|
| ProductionDate | date |
None. |
|
| ForceUpdate | string |
Matching regular expression pattern: ^[YN]$ |
|
| ReleaseNotes | string |
String length: inclusive between 0 and 255 |
|
| Status | string |
Matching regular expression pattern: ^[AID]$ |
Request Formats
application/json, text/json
Sample:
{
"AppId": "sample string 1",
"AppName": "sample string 2",
"Platform": "sample string 3",
"TestVersion": "sample string 4",
"ProductionVersion": "sample string 5",
"MinimumVersion": "sample string 6",
"TestDate": "2026-04-05T13:36:57.2295537-04:00",
"ProductionDate": "2026-04-05T13:36:57.2295537-04:00",
"ForceUpdate": "sample string 7",
"ReleaseNotes": "sample string 8",
"Status": "sample string 9"
}
application/xml, text/xml
Sample:
<CreateAppVersionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TomJames.API.Areas.AppVersion.Models.Request"> <AppId>sample string 1</AppId> <AppName>sample string 2</AppName> <ForceUpdate>sample string 7</ForceUpdate> <MinimumVersion>sample string 6</MinimumVersion> <Platform>sample string 3</Platform> <ProductionDate>2026-04-05T13:36:57.2295537-04:00</ProductionDate> <ProductionVersion>sample string 5</ProductionVersion> <ReleaseNotes>sample string 8</ReleaseNotes> <Status>sample string 9</Status> <TestDate>2026-04-05T13:36:57.2295537-04:00</TestDate> <TestVersion>sample string 4</TestVersion> </CreateAppVersionRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.