Cookie Consent by Free Privacy Policy Generator Update cookies preferences

Attributes

AttributeTypeDescription
namestring requiredProduct name. Limited to 255 characters.
skustringProduct SKU. Limited to 128 characters.
quantityinteger requiredThe quantity of the item, stored as a signed 32-bit integer.
priceMoney  requiredThe unit price of the individual item. Must be a positive value.

Example Item object

{
  "name": "T-Shirt",
  "sku": "12341234",
  "quantity": 1,
  "price": {
    "amount": "10.00",
    "currency": "GBP"
  }
}