Skip to content

Get application information
Stable

Request

Get a specific Google Play application from a Google Enterprise (EMM) instance. Retrieves the full details of a single Google Play product record identified by product_id, including its google_product_id, package_name, title, icon_url, min_sdk_version, active status, and approval state.

Common Use Cases

Confirming the google_product_id and active status of a specific app before using it in a silent install command, verifying that an app's approval state is valid after it has been added to the EMM instance, and retrieving full product details for auditing or troubleshooting app deployment issues.

Best Practices

Use GET /v0/enterprise/{enterprise_id}/emm/{emm_id}/product/ first to list all product records and obtain the product_id (the Esper-generated UUID id field in the response) before calling this endpoint.

Security
esper_cloud_api_apiKey
Path
enterprise_idstringrequired

A UUID string identifying this enterprise.

emm_idintegerrequired

An integer representing the ID of enterprise.

product_idstringrequired

A string identifying the product.

cURL
curl -i -X GET \
  'https://api.esper.io/_mock/openapi/v0/enterprise/{enterprise_id}/emm/{emm_id}/product/{product_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Bodyapplication/json
idstring, (uuid)
icon_urlstring, (url)
is_activeboolean
titlestring
unapprovedboolean
created_onstring, (date-time)
updated_onstring, (date-time)
min_sdk_versionstring
google_product_idstring
package_namestring, [ 1 .. 255 ] characters
google_enterpriseinteger
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "icon_url": "string", "is_active": true, "title": "string", "unapproved": true, "created_on": "2019-08-24T14:15:22Z", "updated_on": "2019-08-24T14:15:22Z", "min_sdk_version": "string", "google_product_id": "string", "package_name": "string", "google_enterprise": 0 }