Item object
Attributes
Attribute | Type | Description |
---|---|---|
name | string required | Product name. Limited to 255 characters. |
sku | string | Product SKU. Limited to 128 characters. |
quantity | integer required | The quantity of the item, stored as a signed 32-bit integer. |
price | Money required | The 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 }