---
title: "Gets minimum information regarding application"
method: GET
path: "/v1/enterprise/{enterprise_id}/applications-minimal/"
tags: ["esper_cloud_api_Application"]
---

# Gets minimum information regarding application

`GET /v1/enterprise/{enterprise_id}/applications-minimal/`

List minimal application information for all applications in the enterprise. Returns a lightweight list containing only the id (UUID) and package_name for each application uploaded to the enterprise. Use this endpoint instead of the full application list endpoints when you only need to look up an application_id by package name, or build a quick reference map of all applications in the enterprise without the overhead of retrieving full application metadata.

This endpoint returns Android applications only. For other platforms, use the following alternatives:

iOS (tenant/enterprise apps): GET /v2/tenant-apps/ — returns iOS IPAs and supports filtering by package_name and app_name
iOS (VPP and App Store apps): GET /v2/ios-apps/ — returns information about VPP-managed and App Store iOS apps
iOS (unified app list including webclips): GET /v2/apps/ — returns a unified list of iOS apps and webclips for the tenant

**Workflow**

Call this endpoint to retrieve the full list of Android application id and package_name pairs for the enterprise.
Identify the application_id UUID for the package you want to work with.
Use GET /v1/enterprise/{enterprise_id}/application/{application_id}/version/ to retrieve available versions for that application.
Use the version_id from step 3 in POST /commands/v0/commands/ to issue an install command to target devices.

## Path parameters

- `enterprise_id` string, required

## Response `200`

successful operation

- object
  - `count` integer, required
  - `next` string, url, nullable
  - `previous` string, url, nullable
  - `results` object[], required
    - `id` string, uuid
    - `package_name` string

## Other responses

- `401` — Authorization information is missing or invalid.
- `404` — Not Found.
- `500` — Internal server error

---

[API](https://skmtc.net/esper/apis/esper-api-reference.md) · [All operations](https://skmtc.net/esper/apis/esper-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/esper/esper-api-reference/revisions/e1f64cbb488e/schema)
