Prizes Loot Integration Guide

iFrame Integration

What is iFrame Integration?

iFrame integration allows advertisers to display the "Prizes Loot" page on their websites within an iframe. You can customize it to display specific content such as particular offers based on `app_id` and `user_id`.

How to Create an iFrame?

You can create an iFrame on your website using the following code:

<iframe src="https://prizesloot.net/iframe?app_id=YOUR_APP_ID&user_id=YOUR_USER_ID" width="100%" height="600px" frameborder="0" scrolling="no"></iframe>
            
iFrame Parameters:
  • app_id: The application ID provided by Prizes Loot.
  • user_id: The user ID for whom you want to display offers.

Postback Integration

What is Postback Integration?

Postback is a mechanism that allows the "Prizes Loot" website to send real-time notifications to your server when a user completes an offer. This is done via an HTTP request sent to the URL you specify.

How to Set Up Postback Integration?

To set up Postback integration, you need to specify your URL that will be called upon offer completion. The URL should contain the following parameters:

https://yourdomain.com/postback?app_id={app_id}&user_id={user_id}&amount={amount}&payout={payout}&offer_name={offer_name}&user_ip={user_ip}
            
Postback Parameters:
  • {user_id}: This is the unique identifier code of the user who completed action on your platform
  • {payout}: Amount in USD that you earned for this conversion
  • {amount}: The amount of your virtual currency to be credited to your user
  • {offer_name}: The Name of the offer completed
  • {user_ip}: IP address of the user that completed the offer
  • {trackId}: A unique transaction identifier generated to distinguish a re-post request transaction.
Example Postback Response:

If the user successfully completes an offer, a Postback request will be sent to your specified URL with the parameters mentioned above.