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
Australia
1 { 2 "name": "T-Shirt", 3 "sku": "12341234", 4 "quantity": 1, 5 "price": { 6 "amount": "10.00", 7 "currency": "AUD" 8 } 9 }
New Zealand
1 { 2 "name": "T-Shirt", 3 "sku": "12341234", 4 "quantity": 1, 5 "price": { 6 "amount": "10.00", 7 "currency": "NZD" 8 } 9 }
United States of America
1 { 2 "name": "T-Shirt", 3 "sku": "12341234", 4 "quantity": 1, 5 "price": { 6 "amount": "10.00", 7 "currency": "USD" 8 } 9 }