Get Brand

Endpoint: https://rest.virtualincentives.com/{version}/{format}/products/{sku}

Method: GET

Definitions

FieldTypeDescription
skurequired
string(50)
Prepaid product SKU.
name(250)response only
string
Brand name.
currencyresponse only
string(10)
Brand currency.
base-urlresponse only
string(255)
Base URL.
redemptionsresponse only
array
List of redemption options.
denominationresponse only
object
List of fixed and ranged denominations.
valueresponse only
decimal
Fixed denomination of the product.
minresponse only
decimal
Minimum product denomination of the range.
maxresponse only
decimal
Maximum product denomination of the range.

Examples

Response XML

<products>
 <product>
  <name>Virtual Visa® Reward (United States) - 3-Month</name>
  <sku>UVC-V-A96</sku>
  <currency>USD</currency>
  <denomination>
   <ranged min="5.00" max="100.00" />
  </denomination>
  <base-url />
  <redemptions />
 </product>
<products>

Response JSON

{
 "product":
  {
   "name":"Virtual Visa® Reward (United States) - 3-Month",
   "sku":"UVC-V-A96",
   "currency":"USD",
   "denomination":{
    "ranged":[
     {
      "min":5.00,
      "max":100.00
     }
    ]
   },
   "base-url":"",
   "redemptions":[]
  }
}