Merchant API . accounts . issues

Instance Methods

close()

Close httplib2 connections.

list(parent, languageCode=None, pageSize=None, pageToken=None, timeZone_id=None, timeZone_version=None, x__xgafv=None)

Lists all account issues of a Merchant Center account.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
list(parent, languageCode=None, pageSize=None, pageToken=None, timeZone_id=None, timeZone_version=None, x__xgafv=None)
Lists all account issues of a Merchant Center account.

Args:
  parent: string, Required. The parent, which owns this collection of issues. Format: `accounts/{account}` (required)
  languageCode: string, Optional. The issues in the response will have human-readable fields in the given language. The format is [BCP-47](https://tools.ietf.org/html/bcp47), such as `en-US` or `sr-Latn`. If not value is provided, `en-US` will be used.
  pageSize: integer, Optional. The maximum number of issues to return. The service may return fewer than this value. If unspecified, at most 50 users will be returned. The maximum value is 100; values above 100 will be coerced to 100
  pageToken: string, Optional. A page token, received from a previous `ListAccountIssues` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListAccountIssues` must match the call that provided the page token.
  timeZone_id: string, IANA Time Zone Database time zone, e.g. "America/New_York".
  timeZone_version: string, Optional. IANA Time Zone Database version number, e.g. "2019a".
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for the `ListAccountIssues` method.
  "accountIssues": [ # The issues from the specified account.
    { # An [`AccountIssue`](https://support.google.com/merchants/answer/12153802?sjid=17798438912526418908-EU#account).
      "detail": "A String", # Further localized details about the issue.
      "documentationUri": "A String", # Link to Merchant Center Help Center providing further information about the issue and how to fix it.
      "impactedDestinations": [ # The impact this issue has on various destinations.
        { # The impact of the issue on a destination.
          "impacts": [ # The (negative) impact for various regions on the given destination.
            { # The impact of the issue on a region.
              "regionCode": "A String", # The [CLDR region code](https://cldr.unicode.org/) where this issue applies.
              "severity": "A String", # The severity of the issue on the destination and region.
            },
          ],
          "reportingContext": "A String", # The impacted reporting context.
        },
      ],
      "name": "A String", # Identifier. The resource name of the account issue. Format: `accounts/{account}/issues/{id}`
      "severity": "A String", # The overall severity of the issue.
      "title": "A String", # The localized title of the issue.
    },
  ],
  "nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.