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.
- Mock serverhttps://api.esper.io/_mock/openapi/v0/enterprise/{enterprise_id}/emm/{emm_id}/product/{product_id}
- https://develop-api.esper.cloud/apihttps://develop-api.esper.cloud/api/v0/enterprise/{enterprise_id}/emm/{emm_id}/product/{product_id}
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>'{ "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 }