Method: accounts.quotas.list
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# Method: accounts.quotas.list\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.ListQuotaGroupsResponse.SCHEMA_REPRESENTATION)\n- [Authorization scopes](#body.aspect)\n- [QuotaGroup](#QuotaGroup)\n - [JSON representation](#QuotaGroup.SCHEMA_REPRESENTATION)\n- [MethodDetails](#MethodDetails)\n - [JSON representation](#MethodDetails.SCHEMA_REPRESENTATION)\n- [Try it!](#try-it)\n\nLists the daily call quota and usage per group for your CSS Center account.\n\n### HTTP request\n\n`GET https://css.googleapis.com/v1/{parent=accounts/*}/quotas`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Path parameters\n\n| Parameters ||\n|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `parent` | `string` Required. The CSS account that owns the collection of method quotas and resources. In most cases, this is the CSS domain. Format: accounts/{account} |\n\n### Query parameters\n\n| Parameters ||\n|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `pageSize` | `integer` Optional. The maximum number of quotas to return in the response, used for paging. Defaults to 500; values above 1000 will be coerced to 1000. |\n| `pageToken` | `string` Optional. Token (if provided) to retrieve the subsequent page. All other parameters must match the original call that provided the page token. |\n\n### Request body\n\nThe request body must be empty.\n\n### Response body\n\nResponse message for the ListMethodGroups method.\n\nIf successful, the response body contains data with the following structure:\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"quotaGroups\": [ { object (/comparison-shopping-services/api/reference/rest/v1/accounts.quotas/list#QuotaGroup) } ], \"nextPageToken\": string } ``` |\n\n| Fields ||\n|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `quotaGroups[]` | `object (`[QuotaGroup](/comparison-shopping-services/api/reference/rest/v1/accounts.quotas/list#QuotaGroup)`)` The methods, current quota usage and limits per each group. The quota is shared between all methods in the group. The groups are sorted in descending order based on [quotaUsage](/comparison-shopping-services/api/reference/rest/v1/accounts.quotas/list#QuotaGroup.FIELDS.quota_usage). |\n| `nextPageToken` | `string` A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted, there are no subsequent pages. |\n\n### Authorization scopes\n\nRequires the following OAuth scope:\n\n- `https://www.googleapis.com/auth/content`\n\nFor more information, see the [OAuth 2.0 Overview](/identity/protocols/OAuth2).\n\nQuotaGroup\n----------\n\nThe group information for methods in the CSS API. The quota is shared between all methods in the group. Even if none of the methods within the group have usage the information for the group is returned.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"quotaUsage\": string, \"quotaLimit\": string, \"quotaMinuteLimit\": string, \"methodDetails\": [ { object (/comparison-shopping-services/api/reference/rest/v1/accounts.quotas/list#MethodDetails) } ] } ``` |\n\n| Fields ||\n|--------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Identifier. The resource name of the quota group. Format: accounts/{account}/quotas/{group} Example: `accounts/12345678/quotas/css-products-insert` Note: The {group} part is not guaranteed to follow a specific pattern. |\n| `quotaUsage` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Output only. The current quota usage, meaning the number of calls already made on a given day to the methods in the group. The daily quota limits reset at at 12:00 PM midday UTC. |\n| `quotaLimit` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Output only. The maximum number of calls allowed per day for the group. |\n| `quotaMinuteLimit` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Output only. The maximum number of calls allowed per minute for the group. |\n| `methodDetails[]` | `object (`[MethodDetails](/comparison-shopping-services/api/reference/rest/v1/accounts.quotas/list#MethodDetails)`)` Output only. List of all methods group quota applies to. |\n\nMethodDetails\n-------------\n\nThe method details per method in the CSS API.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------|\n| ``` { \"method\": string, \"version\": string, \"subapi\": string, \"path\": string } ``` |\n\n| Fields ||\n|-----------|-----------------------------------------------------------------------------------------------------|\n| `method` | `string` Output only. The name of the method for example `cssproductsservice.listcssproducts`. |\n| `version` | `string` Output only. The API version that the method belongs to. |\n| `subapi` | `string` Output only. The sub-API that the method belongs to. In the CSS API, this is always `css`. |\n| `path` | `string` Output only. The path for the method such as `v1/cssproductsservice.listcssproducts`. |"]]