Fetching Personal Offer
var props = new Dictionary<string, object>();
props["prizeKey"] = "GoldPack8";
props["offerId"] = "3622d2-c8c8-4c52-851c-d71af05";
props["currentPlayerLevel"] = 6;
Kibotu.GetPersonalizedBanner(props, asset =>
{
if (asset != null && !asset.IsControlGroup)
{
string imageUrl = asset.imageFullUrl;
// This is the personalized banner
// You can now use imageUrl as needed
}
else
{
// Control group
// Apply your regular handling for this case
}
});Dummy response
Last updated