app/version

Edits an application version

put/app/{appId}/version/{version}

Path parameters

appIdnumber required
Example:5

ID of the application to edit a version for

versionnumber required
Example:2

Version number to edit

Request body

changesstring required

Updated changelog information

Example request

{
  "changes": "Updated changelog information"
}

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

Version number

enabledboolean required

Whether this version is enabled

changesstring required

Changelog information for this version

Example response

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

Changes