Method: accounts.quotas.list
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[],[],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`. |"]]