Direct Integration
Objects
Item object

Item object

Attributes

Attribute (all required)TypeDescription
skustringThe product SKU
imageURLstringThe item's product image
namestringThe name of the item
quantityintThe total quantity of this item
amountintThe total cost of this item in cents
currencystring(i.e. USD)

Example

JSON
{
  "sku": "ABC123",
  "imageURL": "https://example.com/product_image.jpg",
  "name": "Awesome Product",
  "quantity": 2,
  "amount": 1999,
  "currency": "USD"
}