app/version
Creates an application version
post/app/{appId}/version
Path parameters
appIdnumber required
Example:5
ID of the application to create a new version for
Request body
Example request
{
"tools": [
{
"packageName": "@vincent/foo-bar",
"version": "1.0.0"
}
],
"changes": "I am a changelog trapped in a computer!"
}Response
Successful operation
Example response
{
"appId": 12312345,
"version": 1,
"enabled": true,
"changes": "I am a changelog trapped in a computer!"
}