- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- MethodQuota
- Try it!
Lists the daily call quota and usage per method for your Merchant Center account.
HTTP request
GET https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/quotas
Path parameters
Parameters | |
---|---|
merchantId |
Required. The ID of the account that has quota. This account must be an admin. |
Query parameters
Parameters | |
---|---|
pageSize |
The maximum number of quotas to return in the response, used for paging. Defaults to 500; values above 1000 will be coerced to 1000. |
pageToken |
Token (if provided) to retrieve the subsequent page. All other parameters must match the original call that provided the page token. |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
Response message for the quotas.list method.
JSON representation |
---|
{
"methodQuotas": [
{
object ( |
Fields | |
---|---|
methodQuotas[] |
The current quota usage and limits per each method. |
nextPageToken |
A token, which can be sent as |
Authorization Scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/content
For more information, see the OAuth 2.0 Overview.
MethodQuota
The quota information per method in the Content API. Includes only methods with current usage greater than zero for your account.
JSON representation |
---|
{ "method": string, "quotaUsage": string, "quotaLimit": string } |
Fields | |
---|---|
method |
The method name, for example |
quotaUsage |
The current quota usage, meaning the number of calls already made to the method. |
quotaLimit |
The current quota limit per day, meaning the maximum number of calls for the method. |