AppVersion

Creates an application version

post/app/{appId}/version

Path parameters

appIdnumber required

ID of the target application

Request body

changesstring

Describes what changed between this version and the previous version.

Example request

{
  "changes": "I am a changelog trapped in a computer!"
}

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