Product Catalog Localized Items Batch
Updated: Feb 10, 2026
Reading
You can’t perform this operation on this endpoint.
Creating
/{product_catalog_id}/localized_items_batch
You can make a POST request to localized_items_batch edge from the following paths:
When posting to this edge, no Graph object will be created.
The sample API call provides an example of how this API endpoint works in practice.
Limitations
- This endpoint does not create new catalog items. All requests should contain a data JSON object that contains an ID for an existing catalog item.
-
The
requestsparam can contain up to 5,000 items. - For each catalog, you can make a number of calls per minute defined by the Catalog Batch business use case rate limit formula. If that's not sufficient, please contact us.
- Error code 1 with message "Please reduce the amount of data you're asking for, then retry your request" indicates that the size of the data (in bytes) received in API request is too large. To fix this issue, please reduce the number of items in the batch and try again. This will ensure that the request is within the acceptable size limits and can be processed successfully.
Parameters
| Parameter | Description |
|---|---|
item_typestring |
The type of items in the request. Needs to be one of the values listed here. Note that the information specified in this field is NOT a product category (a concept used for item_type=PRODUCT_ITEM).
required |
requestsJSON object |
A JSON array of up to 5000 records, each containing 3 fields:
required |
Return Type
This endpoint supports read-after-write and will read the node to which you POSTed.
Struct {
handles: List [string],
validation_status: List [ Struct {
errors: List [ Struct {
message: string,
}],
retailer_id: string,
warnings: List [ Struct {
message: string,
}],
}],
}
Error Codes
| Error Code | Description |
|---|---|
80014 | There have been too many calls for the batch uploads to this catalog account. Wait a bit and try again. For more info, please refer to /docs/graph-api/overview/rate-limiting#catalog. |
200 | Permissions error |
100 | Invalid parameter |
Updating
You can't perform this operation on this endpoint.
Deleting
You can't perform this operation on this endpoint.
Response Payload Specification
For a Successful Call
| Field | Description |
|---|---|
handles | An array of strings, containing either 0 or 1 value. An empty array means that nothing has been ingested. This value can be passed to the /check_batch_request_status endpoint to get the status of the request’s processing. |
validation_status | An array of ValidationStatus objects (see below) |
A
ValidationStatus object has the following fields:| Field | Description |
|---|---|
retailer_id | Row identifier from one of the records in the ‘requests’ parameter |
errors | An array of Error objects (see below) |
warnings | An array of Error objects (see below) |
An
Error object has the following structure| Field | Description |
|---|---|
message | A human-readable string providing an explanation of what is the issue with provided catalog item data. |
For a Failed Call
Failed calls return the standard Error Payload.
Sample API Call
A call that updates the Polish version of the title for the item with id=batch_api_product_123
|
|---|
Request |
↳ |
Response |
↳ |
Learn More
-
Send Product Updates -
/{catalog_id}/items_batch -
Check Batch Request Status -
/{catalog_id}/check_batch_request_status - Catalog