Example #1
Passing User ID
Redirect users to the GoKart Offer Wall with their User ID.
<a href="https://app.[YOUR_TENANT].getgokart.ai/offer-wall?pub_member_id=USER_ID">Go to Offer Wall</a>
In this example, the pub_member_id parameter is used to pass the User ID 2173, allowing the system to personalize the offer experience.
<a href="https://app.brightwheels.getgokart.ai/offer-wall?pub_member_id=2173">Go to Offer Wall</a>
Example #2
Passing Multiple Parameters
Redirect users with multiple parameters such as User ID and Age.
<a href="https://app.[YOUR_TENANT].getgokart.ai/offer-wall?pub_member_id=USER_ID&pub_age=25">Go to Offer Wall</a>
This example shows how to pass multiple parameters to further customize the user's experience based on their age and user ID.
<a href="https://app.brightwheels.getgokart.ai/offer-wall?pub_member_id=2173&pub_age=25">Go to Offer Wall</a>
Example #3
Using Sub Parameters
Pass a custom campaign ID using one of the sub parameters.
<a href="https://app.[YOUR_TENANT].getgokart.ai/offer-wall?pub_member_id=USER_ID&pub_sub_1=campaign123">Go to Offer Wall</a>
Here, pub_sub_1 is used to pass a custom campaign ID campaign123 along with the User ID 2173, allowing for specific campaign tracking and analytics.
<a href="https://app.brightwheels.getgokart.ai/offer-wall?pub_member_id=2173&pub_sub_1=campaign123">Go to Offer Wall</a>
Example #4
Advanced Redirection with Geographic and Gender Data
Redirect users with additional parameters like geographic location and gender.
<a href="https://app.[YOUR_TENANT].getgokart.ai/offer-wall?pub_member_id=USER_ID&pub_geo_country=US&pub_gender=male">Go to Offer Wall</a>
This advanced example includes user ID, country code, and gender to provide highly targeted offers based on multiple user attributes.
<a href="https://app.brightwheels.getgokart.ai/offer-wall?pub_member_id=2173&pub_geo_country=US&pub_gender=male">Go to Offer Wall</a>
