Method: customers.apps.countChromeAppRequests

Generate summary of app installation requests.

HTTP request

GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/apps:countChromeAppRequests

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
customer

string

Required. Customer id or "my_customer" to use the customer associated to the account making the request.

Query parameters

Parameters
orgUnitId

string

The ID of the organizational unit.

pageSize

integer

Maximum number of results to return. Maximum and default are 50, anything above will be coerced to 50.

pageToken

string

Token to specify the page of the request to be returned.

orderBy

string

Field used to order results.

Supported fields:

  • requestCount
  • latestRequestTime

Request body

The request body must be empty.

Response body

Response containing summary of requested app installations.

If successful, the response body contains data with the following structure:

JSON representation
{
  "requestedApps": [
    {
      object (ChromeAppRequest)
    }
  ],
  "nextPageToken": string,
  "totalSize": integer
}
Fields
requestedApps[]

object (ChromeAppRequest)

Count of requested apps matching request.

nextPageToken

string

Token to specify the next page in the list.

totalSize

integer

Total number of matching app requests.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/chrome.management.appdetails.readonly

ChromeAppRequest

Details of an app installation request.

JSON representation
{
  "appId": string,
  "displayName": string,
  "appDetails": string,
  "iconUri": string,
  "detailUri": string,
  "requestCount": string,
  "latestRequestTime": string
}
Fields
appId

string

Output only. Unique store identifier for the app. Example: "gmbmikajjgmnabiglmofipeabaddhgne" for the Save to Google Drive Chrome extension.

displayName

string

Output only. App's display name.

appDetails

string

Output only. Format: appDetails=customers/{customer_id}/apps/chrome/{appId}

iconUri

string

Output only. A link to an image that can be used as an icon for the product.

detailUri

string

Output only. The uri for the detail page of the item.

requestCount

string (int64 format)

Output only. Total count of requests for this app.

latestRequestTime

string (Timestamp format)

Output only. The timestamp of the most recently made request for this app.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".