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. |
{
"name": "T-Shirt",
"sku": "12341234",
"quantity": 1,
"price": {
"amount": "10.00",
"currency": "GBP"
}
}