Method: datafeedstatuses.list

  • Lists the statuses of datafeeds in your Merchant Center account using the GET method.

  • Requires a merchantId path parameter specifying the managing account.

  • Allows pagination using maxResults and pageToken query parameters.

  • Returns a list of DatafeedStatus resources and a token for retrieving further pages, if available.

  • Needs authorization with the https://www.googleapis.com/auth/content scope.

Lists the statuses of the datafeeds in your Merchant Center account.

HTTP request

GET https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/datafeedstatuses

Path parameters

Parameters
merchantId

string

The ID of the account that manages the datafeeds. This account cannot be a multi-client account.

Query parameters

Parameters
maxResults

integer (uint32 format)

The maximum number of products to return in the response, used for paging.

pageToken

string

The token returned by the previous request.

Request body

The request body must be empty.

Response body

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

JSON representation
{
  "nextPageToken": string,
  "kind": string,
  "resources": [
    {
      object (DatafeedStatus)
    }
  ]
}
Fields
nextPageToken

string

The token for the retrieval of the next page of datafeed statuses.

kind

string

Identifies what kind of resource this is. Value: the fixed string "content#datafeedstatusesListResponse".

resources[]

object (DatafeedStatus)

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/content

For more information, see the OAuth 2.0 Overview.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-02-25 UTC.