---
title: "Get device app details"
method: GET
path: "/enterprise/{enterprise_id}/device/{device_id}/app/{app_id}/"
tags: ["esper_cloud_api_AndroidDevice"]
---

# Get device app details

`GET /enterprise/{enterprise_id}/device/{device_id}/app/{app_id}/`

Get details of a specific app installed on an Android device. Retrieves the full DeviceApp record for a single app identified by app_id on the specified Android device, including the app's app_name, package_name, state, app_type, version_code, version_name, is_active, is_kiosk_app, is_esper_controlled, whitelisted, is_data_clearable, and is_uninstallable fields.

**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

- `app_id` string, uuid, required
- `enterprise_id` string, required
- `device_id` string, required

## Response `200`

successful operation

- EsperCloudApiDeviceApp
  - `id` string, uuid
  - `app_name` string, required
  - `state` string
  - `app_type` string
  - `package_name` string, required
  - `whitelisted` boolean
  - `is_data_clearable` boolean
  - `is_uninstallable` boolean
  - `product_id` string, nullable
  - `version_code` string, nullable
  - `version_name` string, nullable
  - `created_on` string, date-time
  - `updated_on` string, date-time
  - `is_active` boolean
  - `is_kiosk_app` boolean
  - `is_esper_controlled` boolean
  - `device` string, uuid, required

## Other responses

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

---

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