- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- BrowserVersion
- ReleaseChannel
- DeviceSystem
- Try it!
Generate report of installed Chrome versions.
HTTP request
GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/reports:countChromeVersions
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
customer |
Required. Customer id or "my_customer" to use the customer associated to the account making the request. |
Query parameters
Parameters | |
---|---|
org |
The ID of the organizational unit. |
page |
Maximum number of results to return. Maximum and default are 100. |
page |
Token to specify the page of the request to be returned. |
filter |
Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields:
|
Request body
The request body must be empty.
Response body
Response containing requested browser versions details and counts.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"browserVersions": [
{
object ( |
Fields | |
---|---|
browser |
List of all browser versions and their install counts. |
next |
Token to specify the next page of the request. |
total |
Total number browser versions matching request. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/chrome.management.reports.readonly
BrowserVersion
Describes a browser version and its install count.
JSON representation |
---|
{ "version": string, "count": string, "channel": enum ( |
Fields | |
---|---|
version |
Output only. The full version of the installed browser. |
count |
Output only. Count grouped by device_system and major version |
channel |
Output only. The release channel of the installed browser. |
system |
Output only. The device operating system. |
device |
Output only. Version of the system-specified operating system. |
ReleaseChannel
The release channel of the installed browser.
Enums | |
---|---|
RELEASE_CHANNEL_UNSPECIFIED |
No release channel specified. |
CANARY |
Canary release channel. |
DEV |
Dev release channel. |
BETA |
Beta release channel. |
STABLE |
Stable release channel. |
DeviceSystem
The device operating system.
Enums | |
---|---|
DEVICE_SYSTEM_UNSPECIFIED |
No operating system specified. |
SYSTEM_OTHER |
Other operating system. |
SYSTEM_ANDROID |
Android operating system. |
SYSTEM_IOS |
Apple iOS operating system. |
SYSTEM_CROS |
ChromeOS operating system. |
SYSTEM_WINDOWS |
Microsoft Windows operating system. |
SYSTEM_MAC |
Apple macOS operating system. |
SYSTEM_LINUX |
Linux operating system. |