PUT api/appversion/versions/{appId}/{platform}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | string |
Required |
|
| platform | string |
Required |
Body Parameters
UpdateAppVersionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| 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:
{
"TestVersion": "sample string 1",
"ProductionVersion": "sample string 2",
"MinimumVersion": "sample string 3",
"TestDate": "2026-04-05T13:37:23.1434926-04:00",
"ProductionDate": "2026-04-05T13:37:23.1434926-04:00",
"ForceUpdate": "sample string 4",
"ReleaseNotes": "sample string 5",
"Status": "sample string 6"
}
application/xml, text/xml
Sample:
<UpdateAppVersionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TomJames.API.Areas.AppVersion.Models.Request"> <ForceUpdate>sample string 4</ForceUpdate> <MinimumVersion>sample string 3</MinimumVersion> <ProductionDate>2026-04-05T13:37:23.1434926-04:00</ProductionDate> <ProductionVersion>sample string 2</ProductionVersion> <ReleaseNotes>sample string 5</ReleaseNotes> <Status>sample string 6</Status> <TestDate>2026-04-05T13:37:23.1434926-04:00</TestDate> <TestVersion>sample string 1</TestVersion> </UpdateAppVersionRequest>
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.