Attributs

AttributType de donnéesDescription
display_name
Obligatoire
stringThe display name of the product.
sku
Obligatoire
string The product SKU.
unit_price
Obligatoire
integer The item price amount in USD or CAD cents.
qty
Obligatoire
integer The item quantity expressed as an integer.
item_image_url
Obligatoire
string The item's product image URL.
item_url
Obligatoire
string The item's product description page URL.
categories
optionnel
tableau An array of lists that indicate the various categories that apply to this product, and the hierarchy of those category definitions. Each list in the array contains one or more comma-separated strings, with the first string being the highest-level (widest) category.
{
   "display_name":"Awesome Pants",
   "sku":"ABC-123",
   "unit_price":1999,
   "qty":3,
   "item_image_url":"http://merchantsite.com/images/awesome-pants.jpg",
   "item_url":"http://merchantsite.com/products/awesome-pants.html",
   "categories":[
      [
         "Apparel",
         "Pants"
      ],
      [
         "Mens",
         "Apparel",
         "Pants"
      ]
   ]
}