GET
/
v1
/
apps
/
{packageName}
curl --request GET \
  --url https://managexrapi.com/v1/apps/{packageName} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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

organizationId
string

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

Response

200
application/json
The app profile

The response is of type object.