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/ProductscURL
curl "BASE_URL/v1/Products?pageIndex=1&pageSize=25¤cyCode=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 ordersName- the product display nameDenominations- supported values or rangesDenominationType- fixed, variable, or variable without centsAvailableDeliveryTypes- supported fulfillment methodsCurrencyCode- 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.