Postbacks

We use postbacks to let your server know about successful conversions. You can use this information to reward your users and track your revenue.

URL

Your Postback URL is your server endpoint that expects calls from our server. An example Postback URL might look like this:

https://example.com/success?user_id={user_id}&amount={amount}&payout={payout}&transaction_id={transaction_id}&user_ip={user_ip}&subid={subid}&offerid={offerid}&offername={offername}

Macros

The following macros are available and will be replaced dynamically when sending you the postback:

ParameterDescription

{user_id}

Unique User Identifier

{amount}

Reward in App Currency

{payout}

Reward in US-$

{transaction_id}

Unique Transaction ID

{user_ip}

User's IP Address

{subid}

SubID

{offerid}

Offer ID

{offername}

Offer Name

You can use the Unique Transaction ID to make sure that you don't credit rewards twice.

Whitelisting

In order to ensure the integrity of the postbacks, you can whitelist our server IP. Postbacks are exclusively sent from this IP address:

63.32.127.99

Retries

Please return status code 200, if you have successfully processed the postback. If we receive any other status code as a response, we will retry sending the postback in 1 minute intervals with a maximum of 10 tries.

Last updated