Method: customers.apps.countChromeAppRequests
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
アプリのインストール リクエストの概要を生成します。
HTTP リクエスト
GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/apps:countChromeAppRequests
この URL は gRPC Transcoding 構文を使用します。
パスパラメータ
パラメータ |
customer |
string
必須。お客様 ID または「my_customer」: リクエスト元のアカウントに関連付けられているお客様を使用します。
|
クエリ パラメータ
パラメータ |
orgUnitId |
string
組織部門の ID。
|
pageSize |
integer
返される結果の最大数。最大値とデフォルトは 50 です。50 を超える値は 50 に強制変換されます。
|
pageToken |
string
返されるリクエストのページを指定するトークン。
|
orderBy |
string
結果の並べ替えに使用されるフィールド。 サポートされているフィールド:
- requestCount
- latestRequestTime
|
リクエストの本文
リクエストの本文は空にする必要があります。
レスポンスの本文
リクエストされたアプリのインストールの概要を含むレスポンス。
成功した場合、レスポンスの本文には次の構造のデータが含まれます。
JSON 表現 |
{
"requestedApps": [
{
object (ChromeAppRequest )
}
],
"nextPageToken": string,
"totalSize": integer
} |
フィールド |
requestedApps[] |
object (ChromeAppRequest )
リクエストに一致するリクエストされたアプリの数。
|
nextPageToken |
string
リストの次のページを指定するトークン。
|
totalSize |
integer
一致したアプリ リクエストの合計数。
|
認可スコープ
次の OAuth スコープが必要です。
https://www.googleapis.com/auth/chrome.management.appdetails.readonly
ChromeAppRequest
JSON 表現 |
{
"appId": string,
"displayName": string,
"appDetails": string,
"iconUri": string,
"detailUri": string,
"requestCount": string,
"latestRequestTime": string
} |
フィールド |
appId |
string
出力専用。アプリの一意のストア識別子。例: 「Google ドライブに保存」Chrome 拡張機能の場合は「gmbmikajjgmnabiglmofipeabaddhgne」。
|
displayName |
string
出力専用。アプリの表示名。
|
appDetails |
string
出力専用。形式: appDetails=customers/{customer_id}/apps/chrome/{appId}
|
iconUri |
string
出力専用。商品のアイコンとして使用できる画像へのリンク。
|
detailUri |
string
出力専用。アイテムの詳細ページの URI。
|
requestCount |
string (int64 format)
出力専用。このアプリのリクエストの合計数。
|
latestRequestTime |
string (Timestamp format)
出力専用。このアプリに対して最後に行われたリクエストのタイムスタンプ。 RFC 3339 を使用します。生成された出力は常に Z 正規化され、小数点以下は 0、3、6、または 9 桁になります。「Z」以外のオフセットも使用できます。例: "2014-10-02T15:01:23Z" 、"2014-10-02T15:01:23.045123456Z" 、"2014-10-02T15:01:23+05:30" 。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eSummarizes app installation requests for a given customer.\u003c/p\u003e\n"],["\u003cp\u003eAllows filtering by organizational unit and ordering by request count or time.\u003c/p\u003e\n"],["\u003cp\u003eProvides app details such as ID, name, icon, and request count.\u003c/p\u003e\n"],["\u003cp\u003eRequires \u003ccode\u003echrome.management.appdetails.readonly\u003c/code\u003e authorization scope.\u003c/p\u003e\n"],["\u003cp\u003eResponse is paginated and includes a total count of matching requests.\u003c/p\u003e\n"]]],[],null,["# Method: customers.apps.countChromeAppRequests\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Path parameters](#body.PATH_PARAMETERS)\n- [Query parameters](#body.QUERY_PARAMETERS)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n - [JSON representation](#body.CountChromeAppRequestsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [ChromeAppRequest](#ChromeAppRequest)\n - [JSON representation](#ChromeAppRequest.SCHEMA_REPRESENTATION)\n- [Try it!](#try-it)\n\nGenerate summary of app installation requests.\n\n### HTTP request\n\n`GET https://chromemanagement.googleapis.com/v1/{customer=customers/*}/apps:countChromeAppRequests`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|------------|-------------------------------------------------------------------------------------------------------------------|\n| `customer` | `string` Required. Customer id or \"my_customer\" to use the customer associated to the account making the request. |\n\n### Query parameters\n\n| Parameters ||\n|-------------|------------------------------------------------------------------------------------------------------------------|\n| `orgUnitId` | `string` The ID of the organizational unit. |\n| `pageSize` | `integer` Maximum number of results to return. Maximum and default are 50, anything above will be coerced to 50. |\n| `pageToken` | `string` Token to specify the page of the request to be returned. |\n| `orderBy` | `string` Field used to order results. Supported fields: - requestCount - latestRequestTime |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse containing summary of requested app installations.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"requestedApps\": [ { object (/chrome/management/reference/rest/v1/customers.apps/countChromeAppRequests#ChromeAppRequest) } ], \"nextPageToken\": string, \"totalSize\": integer } ``` |\n\n| Fields ||\n|-------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `requestedApps[]` | `object (`[ChromeAppRequest](/chrome/management/reference/rest/v1/customers.apps/countChromeAppRequests#ChromeAppRequest)`)` Count of requested apps matching request. |\n| `nextPageToken` | `string` Token to specify the next page in the list. |\n| `totalSize` | `integer` Total number of matching app requests. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/chrome.management.appdetails.readonly`\n\nChromeAppRequest\n----------------\n\nDetails of an app installation request.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"appId\": string, \"displayName\": string, \"appDetails\": string, \"iconUri\": string, \"detailUri\": string, \"requestCount\": string, \"latestRequestTime\": string } ``` |\n\n| Fields ||\n|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `appId` | `string` Output only. Unique store identifier for the app. Example: \"gmbmikajjgmnabiglmofipeabaddhgne\" for the Save to Google Drive Chrome extension. |\n| `displayName` | `string` Output only. App's display name. |\n| `appDetails` | `string` Output only. Format: appDetails=customers/{customer_id}/apps/chrome/{appId} |\n| `iconUri` | `string` Output only. A link to an image that can be used as an icon for the product. |\n| `detailUri` | `string` Output only. The uri for the detail page of the item. |\n| `requestCount` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Output only. Total count of requests for this app. |\n| `latestRequestTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. The timestamp of the most recently made request for this app. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than \"Z\" are also accepted. Examples: `\"2014-10-02T15:01:23Z\"`, `\"2014-10-02T15:01:23.045123456Z\"` or `\"2014-10-02T15:01:23+05:30\"`. |"]]