# Postback

{% hint style="info" %}

#### Postback Integration Guide

Our server will make an HTTP GET request to your server, including the following parameters:

* **subId**: The unique identifier for the user who completed the offer.
* **transId**: Unique identification code of the transaction made by your user on Adjoemedia.
* **reward**: The amount of the reward that the user earned for completing the offer.
* **payout**: The offer payout in dollars.
* **signature**: MD5 hash to verify that the call has been made from our servers.
* **status**: Indicates whether to add or subtract the reward amount. "1" means adding virtual currency to the user, and "2" means subtracting it due to issues like fraud or data entry mistakes.
* **userIp**: The user's IP address who completed the action.
* **campaign\_id**: ID of the offer completed.
* **type**: Type of offer (Offers/Surveys/PTC/Shortlink).
* **country**: Country (ISO2 form) where the lead comes from.
* **uuid**: Unique identification code of the click made by your user on Adjoemedia.
* **offer\_name**: Name of the offer completed.

**Note:** "Rewards" and "Payout" parameters are always absolute values. Check the "Status" parameter to determine if you need to add or subtract that amount from your users.

#### Custom Postback Parameters

To receive custom parameter names in your postbacks, specify them in the postback URL like this example:

```plaintext
https://postback.example.com/?custom={subId2}&nameOfCampaign={campaign_name}
```

You can use any of the parameters from the "Postback Parameters" table by enclosing them in `{}`.

#### Security

Verify the signature received in the postback to ensure that the call comes from our servers. The signature parameter should match the MD5 hash of `subid`, `transactionid`, `reward`, and your secret key.

**PHP Example for Signature Verification**

```php
<?php

$secret = ""; // Your secret key

$subId = isset($_GET['subId']) ? $_GET['subId'] : null;
$transId = isset($_GET['transId']) ? $_GET['transId'] : null;
$reward = isset($_GET['reward']) ? $_GET['reward'] : null;
$signature = isset($_GET['signature']) ? $_GET['signature'] : null;

// Validate signature
if (md5($subId . $transId . $reward . $secret) != $signature) {
    echo "ERROR: Signature doesn't match";
    return;
}

?>
```

#### Postback Response

Our server expects the following responses:

* **"OK"** when you receive a new transaction.
* **"DUP"** when you receive a duplicate transaction. This stops further attempts for that transaction.

Our servers wait for a response for a maximum of 60 seconds before a timeout. If a timeout occurs, the request will be retried up to five times in the following hours. Ensure the transaction ID sent to you is unique in your database to prevent duplicate virtual currency rewards.

#### Postback Example

The following example illustrates how to implement your postback in your website/app:

```php
<?php

$secret = ""; // Your secret key
$userId = isset($_GET['subId']) ? $_GET['subId'] : null;
$transactionId = isset($_GET['transId']) ? $_GET['transId'] : null;
$points = isset($_GET['reward']) ? $_GET['reward'] : null;
$signature = isset($_GET['signature']) ? $_GET['signature'] : null;
$action = isset($_GET['status']) ? $_GET['status'] : null;
$ipuser = isset($_GET['userIp']) ? $_GET['userIp'] : "0.0.0.0";

// Validate signature
if (md5($userId . $transactionId . $points . $secret) != $signature) {
    echo "ERROR: Signature doesn't match";
    return;
}

if ($action == 2) { // action = 1 CREDITED // action = 2 REVOKED
    $points = -abs($points);
}

if (isNewTransaction($transactionId)) { // Check if the transaction is new
    processTransaction($userId, $points, $transactionId);
    echo "OK";
} else {
    // If the transaction already exists, please echo DUP.
    echo "DUP";
}

?>
```

**Note:** This guide was last updated 1 months ago.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://adjoemedia.gitbook.io/deco/postback.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
