Difference between revisions of "Offerit REST API Add Advertiser"
From Offerit
Offeritnick (talk | contribs) (→Example Code) |
Offeritnick (talk | contribs) |
||
Line 154: | Line 154: | ||
if($output !== NULL) { | if($output !== NULL) { | ||
//json was valid. Dump the decoded array | //json was valid. Dump the decoded array | ||
− | + | print_r($output); | |
} | } | ||
else { | else { | ||
//invalid json, just dump the raw response | //invalid json, just dump the raw response | ||
− | + | print_r($resp); | |
} | } | ||
// Close request to clear up some resources | // Close request to clear up some resources |
Latest revision as of 16:22, 12 May 2017
POST /advertiser/add_advertiser
Description
- add_advertiser adds a new advertiser
Resource URL
- http://domain/api/advertiser/add_advertiser
- Replace domain with the Offerit domain
Response Format
- JSON
- POST
- HTTP headers
Parameters
Paremeters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded
- username
- type: string
- required
- unique
- Affiliate username
- password
- type: string
- required
- Affiliate Password
- email
- type: string
- required
- unique
- Email address for this affiliate
- firstname
- type: string
- lastname
- type: string
- company
- type: string
- url
- type: string
- tel
- type: string
- icq
- type: string
- aim
- type: string
- msn
- type: string
- address1
- type: string
- address2
- type: string
- city
- type: string
- state
- type: string
- country
- type: string
- zip_code
- type: string
- ref
- type: string
- Tracking code to identifier who referred this affiliate.
- join_ip
- type: string
Example Request
POST
http://domain/api/affiliate/add_advertiser username = hello password = apitest firstname = hello lastname = test email = hello@advertiserit.com company = Offerit url = advertiserit.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 ref = asdasd
- Response:
[ { "result":"Success"," "message":{ "loginid":"4003" } } ]
Example Code
PHP
<?php $curl = curl_init(); $url = 'http://domain/api/affiliate/add_advertiser'; $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: productsupport' ); $data = array( 'username' => 'hello3', 'password' => 'apitest', 'firstname' => 'hello', 'lastname' => 'test', 'email' => 'hello3@advertiserit.com', 'company' => 'Offerit', 'url' => 'advertiserit.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', 'ref' => 'asdasd', 'join_ip' => '192.168.1.1', ); $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); ?>