|
|
Line 116: |
Line 116: |
| 'ref' => 'asdasd', | | 'ref' => 'asdasd', |
| 'minimum_payout' => 50, | | 'minimum_payout' => 50, |
| + | 'join_ip' => '192.168.1.1', |
| ); | | ); |
| | | |
Revision as of 13:20, 31 August 2016
POST /affiliate/addaffiliate
Description
- To add an affiliate through the Offerit API, you can make a call to this api endpoint.
Resource URL
- http://domain/api/affiliate/addaffiliate
- Replace domain with the offerit domain
Request Method
Response Format
Authentication
Parameters
Paremeters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded
- username
- password
- payvia
- email
- firstname
- lastname
- company
- url
- tel
- icq
- aim
- msn
- address1
- address2
- city
- state
- country
- zip_code
- tax_id_or_ssn
- ref
- minimum_payout
- join_ip
Example Request
POST
http://domain/api/affiliate/addaffiliate
[
{
"result": true,
"loginid": "10"
}
]
Example Code
PHP
<?php
$curl = curl_init();
$data = array(
'username' => 'hello',
'password' => 'apitest',
'firstname' => 'hello',
'lastname' => 'test',
'email' => 'hello@offerit.com',
'company' => 'Offerit',
'url' => 'offerit.com',
'tel' => '666-666-6666',
'icq' => '666666666',
'aim' => 'sixsixsix',
'msn' => 'sixsixtysix',
'address1' => '666 666 st',
'address2' => '',
'city' => 'My City',
'state' => 'My State',
'country' => 'USA',
'zip_code' => '12345',
'tax_id_or_ssn' => '54-1233245',
'ref' => 'asdasd',
'minimum_payout' => 50,
'join_ip' => '192.168.1.1',
);
$url = 'http://domain/api/affiliate/addaffiliate';
$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);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
$resp = curl_exec($curl);
//dumps an associative array representation of the json
var_dump(json_decode($resp, true));
// Close request to clear up some resources
curl_close($curl);
?>
?>