Skip to main content
The ProductItem object represents a single product or service item included in a payment transaction. This allows merchants to provide detailed line-item information for better transaction tracking and reporting.

Properties

FieldTypeRequiredDescription
idstringUnique identifier of the product or service in the merchant’s catalog
namestringName or description of the item
quantityintegerQuantity of this item being purchased (minimum: 1)
unitPriceintegerUnit price in the smallest currency unit (e.g., cents for USD) (minimum: 1)
goodsTypestringType of item
Values: PHYSICAL (tangible items), DIGITAL (non-physical items)

Example

{
  "id": "PROD-001",
  "name": "Wireless Keyboard",
  "quantity": 2,
  "unitPrice": 1999,
  "goodsType": "PHYSICAL"
}