Order Tracker Item

May 27, 2025 ยท View on GitHub

The details of the items in the shipment.

Structure

OrderTrackerItem

Fields

NameTypeTagsDescriptionGetterSetter
NameStringOptionalThe item name or title.

Constraints: Minimum Length: 1, Maximum Length: 127
String getName()setName(String name)
QuantityStringOptionalThe item quantity. Must be a whole number.

Constraints: Minimum Length: 1, Maximum Length: 10, Pattern: ^[1-9][0-9]{0,9}$
String getQuantity()setQuantity(String quantity)
SkuStringOptionalThe stock keeping unit (SKU) for the item. This can contain unicode characters.

Constraints: Minimum Length: 1, Maximum Length: 127
String getSku()setSku(String sku)
UrlStringOptionalThe URL to the item being purchased. Visible to buyer and used in buyer experiences.

Constraints: Minimum Length: 1, Maximum Length: 2048
String getUrl()setUrl(String url)
ImageUrlStringOptionalThe URL of the item's image. File type and size restrictions apply. An image that violates these restrictions will not be honored.

Constraints: Minimum Length: 1, Maximum Length: 2048, Pattern: ^(https:)([/|.|\w|\s|-])*\.(?:jpg|gif|png|jpeg|JPG|GIF|PNG|JPEG)
String getImageUrl()setImageUrl(String imageUrl)
UpcUniversalProductCodeOptionalThe Universal Product Code of the item.UniversalProductCode getUpc()setUpc(UniversalProductCode upc)

Example (as JSON)

{
  "name": "name6",
  "quantity": "quantity2",
  "sku": "sku2",
  "url": "url0",
  "image_url": "image_url2"
}