Regional Data in the Commerce Product Catalog
If you have stores in multiple regions, we can ingest your products using one feed that combines your regional product data. At this time, it is not possible to ingest individual product feeds per a region.
To include region specific data in your product feed, add the regional_data
column to your feed. The data in this column must be a JSON object that maps the region code to region specific product details for the product in that row.
The locale code must be a valid locale. See Supported Languages in Localization for a list of locales.
title
,item_url
, andcurrency
are required fields for both Emplifi UGC and Emplifi Ratings & Reviews.stock
,image_url
, andprice
are optional fields for both Emplifi UGC and Emplifi Ratings & Reviews.call_to_action
anddescription
are optional fields for Emplifi UGC.
Example:
This example is formatted for readability instead of usability. When submitting your file, the contents should be inline with other product data. See the example files in Commerce Product Catalog Feed Format for Emplifi Ratings & Reviews for additional reference.
"{
""fr_CA"":{
""title"": ""Combinaison Brise Florale"",
""item_url"": ""https://www.example.com/ca/products/combinaison-brise-florale/EX123456.html"",
""image_url"": ""https://www.example.com/ca/products/combinaison-brise-florale/EX123456.jpg"",
""description"": ""Vous pouvez désormais capturer l'ambiance rétro de l'été avec cette combinaison à épaules dénudées et jambes larges, ornée de motifs floraux éclatants."",
""stock"": 12,
""currency"": ""CAD"",
""price"": 45.00,
""call_to_action"": ""Achetez maintenant""
},
""en_GB"":{
""title"": ""Floral Breeze Jumpsuit"",
""item_url"": ""https://www.example.com/uk/products/floral-breeze-jumpsuit/EX123456.html"",
""image_url"": ""https://www.example.com/uk/products/floral-breeze-jumpsuit/EX123456.jpg"",
""stock"": 25,
""currency"": ""GBP"",
""price"": 40.00,
""call_to_action"": ""Shop Now""
}
}"