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

changesstring

Describes what changed between this version and the previous version.

appIdnumber required

Application ID

versionnumber required

App Version number

Example request

{
  "changes": "I am a changelog trapped in a computer!",
  "appId": 12312345,
  "version": 1
}

Response

Successful operation

_idstring required

Document ID

updatedAtstring date-time required

Timestamp when this was last modified

createdAtstring date-time required

Timestamp when this was created

appIdnumber required

Application ID

versionnumber required

App Version number

enabledboolean required

Whether this version is enabled or not

changesstring

Describes what changed between this version and the previous version.

Example response

{
  "appId": 12312345,
  "version": 1,
  "enabled": true,
  "changes": "I am a changelog trapped in a computer!"
}

Changes