Products

Browse available reward products, understand denominations, and determine which delivery types each product supports.

 

The Products endpoints let you retrieve the available gift card catalog for your account. Product data includes identifiers, denomination options, supported delivery types, and optional descriptive content.

List products

Retrieve a paginated list of available products.

GET /v1/Products
cURL
curl "BASE_URL/v1/Products?pageIndex=1&pageSize=25&currencyCode=USD" \
  -H "Authorization: Bearer TOKEN"

Get a single product

Use a product ID when you need full details for a specific product.

GET /v1/Products/{id}
cURL
curl "BASE_URL/v1/Products/PRODUCTA" \
  -H "Authorization: Bearer TOKEN"

Important product fields

  • Id - the product identifier used in orders
  • Name - the product display name
  • Denominations - supported values or ranges
  • DenominationType - fixed, variable, or variable without cents
  • AvailableDeliveryTypes - supported fulfillment methods
  • CurrencyCode - currency for the product
Tip: Product data is relatively static. Cache product responses for performance rather than requesting the full catalog repeatedly.

Selection guidance

Before creating an order, confirm that the product supports the delivery type you want to use and that the requested value fits the product’s denomination rules.

What’s next