AI-generated Key Takeaways
-
The App Details API allows retrieval of detailed information for Chrome, Android, and Progressive Web Apps.
-
It provides methods to access app details, list app requests, and identify devices/users requesting extensions.
-
URLs for the API are relative to
https://chromemanagement.googleapis.com/v1/customers/
$CUSTOMER. -
The API requires the
https://www.googleapis.com/auth/chrome.management.appdetails.readonly
OAuth scope for access. -
Code samples and further authentication details are available in the provided documentation links.
The App Details API enables you to get detailed information about requested or specified apps.
Quick overview of API methods
URLs are relative to
https://chromemanagement.googleapis.com/v1/customers/$CUSTOMER
Description | Relative URL | Http method |
---|---|---|
Get detailed information about a given Chrome app | /apps/chrome/{app_id}@{app_version} | GET |
Get detailed information about a given Android app | /apps/android/{app_id}@{app_version} | GET |
Get detailed information about a given Progressive Web App | /apps/web/{app_id} | GET |
List requested Chrome apps. | /apps:countChromeAppRequests | GET |
Get a list of devices that have requested to install an extension. | /apps:fetchDevicesRequestingExtension | GET |
Get a list of users that have requested to install an extension. | /apps:fetchUsersRequestingExtension | GET |
See code samples for example
requests and responses. Note that the @{app_version}
segment is optional;
omitting it will return the information of the latest version of the app
available.
API scopes
App Details API requires the following OAuth scope:
https://www.googleapis.com/auth/chrome.management.appdetails.readonly
For more information, see the Authentication Overview.