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 countrycards
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
{
"gc003-124-15": {
"cards": [
{
"expirationDate": "2025-09-08T13:52:07.0369087",
"redeemCardCode": "cbc8f9d052de441c9212d17e68c8d185",
"redeemLink": "",
"redeemPin": "36587",
"redeemSerialNumber": "086ed488-5b8d-4113-b838-dca32fb17d1b"
}
],
"redeemInstructions": {
"tnc": "NO EXPIRATION DATE OR SERVICE FEES * Works with Windows 10 PCs, tablets and phones, Windows 8.1, Windows Phone 8, Xbox One and Xbox 360 (Xbox Live required). Not redeemable on earlier versions. Music: Only for purchase of tracks, albums and music pass on Windows 10 and Windows 8.1 PCs and tablets, or music pass on Xbox One (Xbox Live required). Once redeemed to your U.S. Microsoft account, the full code value will be applied and may be used for eligible purchases (exclusions apply) made directly at select Microsoft digital stores. Eligible purchases and prices vary by region, device, and over time. Geography limitations, country and balance restrictions, taxes, and Internet connection fees may apply. Paid subscriptions required for some content. You must be 13+. Except as required by law, codes cannot be redeemed or exchanged for cash and are not reloadable or refundable. To create a new Microsoft account or to read full terms and conditions (which may change without notice), go to microsoft.com/cardterms. Void where prohibited or restricted by law. Cards and codes issued by and ©/™/® Microsoft Corp, a Washington Corporation, and/or its affiliates.",
"redeem": "Have an account on Xbox Live? Simply log in to your account on www.xbox.com/redeemcode, and enter the 25-digit code. Need to get an account? Go to www.xbox.com/live and follow the steps to create a new account. Then enter the 25-digit code. For more information on how to redeem codes on your Xbox 360 and Xbox One, visit www.xbox.com/howtoredeem-console."
},
"currency": "CAD",
"value": 15
}
}
Example 2
Redeem information for the 038-00-range
{
"038-00-range": {
"currency": "EUR",
"value": 50,
"cards": [
{
"expirationDate": "",
"redeemCardCode": "",
"redeemLink": "https://example.com",
"redeemPin": "51867740",
"redeemSerialNumber": ""
}
]
}
}
Last updated