Method: quotas.list

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

string (int64 format)

Required. The ID of the account that has quota. This account must be an admin.

Query parameters

Parameters
pageSize

integer

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

string

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

Response message for the quotas.list method.

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

JSON representation
{
  "methodQuotas": [
    {
      object (MethodQuota)
    }
  ],
  "nextPageToken": string
}
Fields
methodQuotas[]

object (MethodQuota)

The current quota usage and limits per each method.

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.

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.

JSON representation
{
  "method": string,
  "quotaUsage": string,
  "quotaLimit": string,
  "quotaMinuteLimit": string
}
Fields
method

string

Output only. The method name, for example products.list. Method name does not contain version because quota can be shared between different API versions of the same method.

quotaUsage

string (int64 format)

Output only. The current quota usage, meaning the number of calls already made to the method per day. Usage is reset every day at 12 PM midday UTC.

quotaLimit

string (int64 format)

Output only. The maximum number of calls allowed per day for the method.

quotaMinuteLimit

string (int64 format)

Output only. The maximum number of calls allowed per minute for the method.