Difference between revisions of "Offerit REST API Get Transaction Payout Preview"
From Offerit
OfferitRob (talk | contribs) |
Offeritnick (talk | contribs) |
||
Line 67: | Line 67: | ||
$resp = curl_exec($curl); | $resp = curl_exec($curl); | ||
− | //dumps an associative array representation of the json | + | //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 | // Close request to clear up some resources | ||
curl_close($curl); | curl_close($curl); |
Revision as of 16:33, 12 May 2017
GET transaction/transaction_payout_preview
Description
- Offerit has a REST API resource to look up the commission amount that would be paid for a specific conversion before it happens
Resource URL
- http://domain/api/transaction/transaction_payout_preview
- Replace domain with the nats domain
- GET
Response Format
- JSON
- HTTP headers
Parameters
Paremeters can be sent as url encoded params. See examples below.
- transaction_hash: The click_hash of the click you are looking up.
- type: string
- required
- amount: The conversion amount. If unspecified, % based conversions will be based on an amount of 100
- type: float
- optional
- transaction_type: Default is initial for conversions
- type: string
- optional
Example Request
GET
http://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); ?>