Get Brand
Endpoint: https://rest.virtualincentives.com/{version}/{format}/products/{sku}
Method: GET
Definitions
Field | Type | Description |
---|---|---|
sku | required string(50) | Prepaid product SKU. |
name(250) | response only string | Brand name. |
currency | response only string(10) | Brand currency. |
country | response only string(2) | Brand country (ISO 3166-2). |
base-url | response only string(255) | Base URL. |
redemptions | response only array | List of redemption options. |
denomination | response only object | List of fixed and ranged denominations. |
value | response only decimal | Fixed denomination of the product. |
min | response only decimal | Minimum product denomination of the range. |
max | response 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>
<country>US</country>
<denomination>
<range 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",
"country": "US",
"denomination":{
"range":[
{
"min":5.00,
"max":100.00
}
]
},
"base-url":"",
"redemptions":[]
}
}
Updated over 1 year ago