Item object

Attributes

AttributeTypeDescription
namestring requiredProduct name. Limited to 255 characters.
skustringProduct SKU. Limited to 128 characters.
quantityinteger requiredThe quantity of the item, stored as a signed 32-bit integer.
priceMoney requiredThe unit price of the individual item. Must be a positive value.

Example Item object

Australia

{
"name": "T-Shirt",
"sku": "12341234",
"quantity": 1,
"price": {
"amount": "10.00",
"currency": "AUD"
}
}

New Zealand

{
"name": "T-Shirt",
"sku": "12341234",
"quantity": 1,
"price": {
"amount": "10.00",
"currency": "NZD"
}
}

United States of America

{
"name": "T-Shirt",
"sku": "12341234",
"quantity": 1,
"price": {
"amount": "10.00",
"currency": "USD"
}
}