GET
/
v1
/
apps
curl --request GET \
  --url https://managexrapi.com/v1/apps/ \
  --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
    },
    {
      "packageName": "com.another.app",
      "title": "Another App",
      "description": "Another great app for XR",
      "categories": [
        "Training",
        "Simulation"
      ],
      "iconUrl": "https://storage.example.com/apps/com.another.app/icon.png",
      "numVersions": 3
    }
  ]
}

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.

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
A list of app profiles

The response is of type object.