Skip to content

Payout Preview

GET transaction/transaction_payout_preview

Description URL Response Format Request Method Authentication
Look up the commission amount that would be paid for a specific conversion before it happens https://domain/api/transaction/transaction_payout_preview JSON GET HTTP headers

Parameters

Paremeters can be sent as url encoded params. See examples below.

Name Description Type Required
transaction_hash Click_hash of the click you are looking up string yes
amount Conversion amount. If unspecified, % based conversions will be based on an amount of 100 float no
transaction_type Default is initial for conversions string no

Example Request

GET

https://domain.com/api/transaction/transaction_payout_preview

Example Code

php

<?php
$curl = curl_init();

$data = array(
    'transaction_hash' => 156097c947ece92.38318951,
    'amount' => 50.25,
);

$data_string = http_build_query($data);
$url = 'http://domain/api/transaction/transaction_payout_preview?'.$data_string;

$headers = array(
    'api-key: 44b5498dbcb481a0d00b404c0169af62',
    'api-username: productsupport'
);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_URL, $url);

$resp = curl_exec($curl);
//dumps an associative array representation of the json response
$output = json_decode($resp, true);
if($output !== NULL) {
    //json was valid. Dump the decoded array
    print_r($output);
}
else {
    //invalid json, just dump the raw response
    print_r($resp);
}
// Close request to clear up some resources
curl_close($curl);
?>