app/version
Creates an application version
post/app/{appId}/version/{version}
Path parameters
appIdnumber required
Example:5
ID of the application to create a new version for
versionstring required
Example:1.0.0
Version number to create
Request body
Example request
{
"changes": "I am a changelog trapped in a computer!",
"appId": 12312345,
"version": 1
}Response
Successful operation
Example response
{
"appId": 12312345,
"version": 1,
"enabled": true,
"changes": "I am a changelog trapped in a computer!"
}