app-version

Create or update app version

Creates a new app version or updates existing one for a platform. If version exists for platform, it will be updated.

post/app-version

Request body

platform'android' | 'ios' required

Platform (android or ios)

versionstring required

Current app version (e.g., "1.0.0")

minimum_required_versionstring

Minimum required version for force update (optional)

is_force_updateboolean

Force update flag

release_notesstring

Release notes (optional)

Example request

{
  "platform": "android",
  "version": "1.0.0",
  "minimum_required_version": "0.9.0",
  "release_notes": "Bug fixes and performance improvements"
}

Response

App version created/updated successfully

app_version_idnumber required

App version ID

platform'android' | 'ios' required

Platform

versionstring required

Current app version

minimum_required_versionstring

Minimum required version

is_force_updateboolean required

Force update flag

release_notesstring

Release notes

created_atstring date-time required

Created at timestamp

updated_atstring date-time required

Updated at timestamp

Example response

{
  "app_version_id": 1,
  "platform": "android",
  "version": "1.0.0",
  "minimum_required_version": "0.9.0",
  "release_notes": "Bug fixes and performance improvements",
  "created_at": "2024-01-01T00:00:00.000Z",
  "updated_at": "2024-01-01T00:00:00.000Z"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.