AI-generated Key Takeaways
-
Retrieves the status of multiple Merchant Center accounts through a single batch request.
-
The request body should contain an
AccountstatusesCustomBatchRequestobject with details of the accounts. -
The response includes an array of
AccountstatusesCustomBatchResponseEntryobjects, each containing the status of an individual account or errors encountered. -
Utilizes the
POSTmethod and requires authorization with thehttps://www.googleapis.com/auth/contentscope.
- HTTP request
- Request body
- Response body
- Authorization scopes
- AccountstatusesCustomBatchRequest
- AccountstatusesCustomBatchRequestEntry
- AccountstatusesCustomBatchResponseEntry
- Try it!
Retrieves multiple Merchant Center account statuses in a single request.
HTTP request
POST https://shoppingcontent.googleapis.com/content/v2.1/accountstatuses/batch
Request body
The request body contains an instance of AccountstatusesCustomBatchRequest
.
Response body
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"entries"
:
[
{
object (
|
| Fields | |
|---|---|
entries[]
|
The result of the execution of the batch requests. |
kind
|
Identifies what kind of resource this is. Value: the fixed string " |
Authorization scopes
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/content
For more information, see the OAuth 2.0 Overview .
AccountstatusesCustomBatchRequest
| JSON representation |
|---|
{
"entries"
:
[
{
object (
|
| Fields | |
|---|---|
entries[]
|
The request entries to be processed in the batch. |
AccountstatusesCustomBatchRequestEntry
A batch entry encoding a single non-batch accountstatuses request.
| JSON representation |
|---|
{ "batchId" : integer , "merchantId" : string , "method" : string , "accountId" : string , "destinations" : [ string ] } |
batchId
integer ( uint32
format)
An entry ID, unique within the batch request.
merchantId
string
The ID of the managing account.
method
string
The method of the batch entry.
Acceptable values are:
- "
get"
accountId
string
The ID of the (sub-)account whose status to get.
destinations[]
string
If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination.
AccountstatusesCustomBatchResponseEntry
A batch entry encoding a single non-batch accountstatuses response.
| JSON representation |
|---|
{ "batchId" : integer , "accountStatus" : { object ( |
| Fields | |
|---|---|
batchId
|
The ID of the request entry this entry responds to. |
accountStatus
|
The requested account status. Defined if and only if the request was successful. |
errors
|
A list of errors for failed custombatch entries. |

