Redeem

The redeem data for your orders are structured as below:

{
   "SKU": {
       "redeemInstructions": { 
          "tnc": string | null,
          "tncHtml": string | null,
          "redeem": string | null,
          "redeemHtml": string | null,
          "languageCode": string | null
       },
       "cards": RedeemCards[],
       "currency": string (ISO Currency Codes),
       "value": number
    }
}

Entities

  • redeemInstructions is itself also a nullable property. Will be filled if the product issuer provides us with this data. This data is often in the same language as the formal language of the product's country

  • cards property is an array of the following type and is filled-in based on the data we get from the product issuer:

{
  redeemLink: string;
  redeemCardCode: string;
  redeemSerialNumber: string;
  redeemPin: string;
  expirationDate: string;
}

Example 1

Redeem information for 2 requested gc003-124-15 products

Example 2

Redeem information for the 038-00-range

Last updated