Skip to main content
PATCH
/
v1
/
apps
/
{packageName}
/
versions
/
{versionId}
Edit app version
curl --request PATCH \
  --url https://managexrapi.com/v1/apps/{packageName}/versions/{versionId} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "versionLabel": "Quest"
}
'
{
  "statusCode": 400,
  "message": "Invalid request",
  "error": "ManageXR Error"
}

Authorizations

Authorization
string
header
required

API key based authentication where is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Path Parameters

packageName
string
required

The package name of the app

versionId
string
required

Unique identifier of the app version

Query Parameters

organizationId
string

Unique identifier of the organization. This parameter is only necessary when using multi-organization API keys.

Defaults to the organizationId associated with the API key.

Body

application/json
versionLabel
string

Label for uniqueness among app versions

Example:

"Quest"

files
object[]

Response

Success