PATCH
/
v1
/
apps
/
{packageName}
curl --request PATCH \
  --url https://managexrapi.com/v1/apps/{packageName} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "My Awesome App",
  "description": "A fantastic app for managing XR content",
  "categories": [
    "Education",
    "Productivity"
  ],
  "iconUrl": "https://storage.example.com/apps/com.example.app/icon.png"
}'
{
  "data": {
    "packageName": "com.example.app",
    "title": "My Awesome App",
    "description": "A fantastic app for managing XR content",
    "categories": [
      "Education",
      "Productivity"
    ],
    "iconUrl": "https://storage.example.com/apps/com.example.app/icon.png",
    "numVersions": 5
  }
}

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> 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

Query Parameters

type
enum<string>

Type of the app version to update

Available options:
managed,
shared,
instant
organizationId
string

Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.

Body

application/json

Response

200
application/json
The updated app profile

The response is of type object.