Item object
Attributes
| Attribute (all required) | Type | Description |
|---|---|---|
| sku | string | The product SKU |
| imageURL | string | The item's product image |
| name | string | The name of the item |
| quantity | int | The total quantity of this item |
| amount | int | The total cost of this item in cents |
| currency | string | (i.e. USD) |
Example
JSON
{
"sku": "ABC123",
"imageURL": "https://example.com/product_image.jpg",
"name": "Awesome Product",
"quantity": 2,
"amount": 1999,
"currency": "USD"
}