Referral
Last updated
fetch('https://api.idosgames.com/api/[titleTemplateId]/[titleId]/Client/Referral/ActivateReferralCode', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"FunctionParameter": {
"ReferralCode": "ABC123"
}
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error)); {
"Message": "REFERRAL_MESSAGE_CODE_SUCCESS_ACTIVATED"
}