Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.paymend.com/llms.txt

Use this file to discover all available pages before exploring further.

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"
}