Item object

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

UK
1{
2 "name": "T-Shirt",
3 "sku": "12341234",
4 "quantity": 1,
5 "price": {
6 "amount": "10.00",
7 "currency": "GBP"
8 }
9}