NATS For Networks REST Add Affiliate

From TMM Wiki
Revision as of 15:55, 19 April 2017 by Tmmdavid (talk | contribs) (Created page with "{{NATS For Networks Manual | show_api_admin_section = true }} == '''POST /offer/add_affiliate''' == '''Description''' *add_affiliate adds a new affiliate '''Resource URL''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Template:NATS For Networks Manual

POST /offer/add_affiliate

Description

  • add_affiliate adds a new affiliate


Resource URL

  • http://domain/api/offer/add_affiliate
  • Replace domain with the NATS For Networks domain

Response Format

  • JSON

Request Method

  • POST

Authentication

  • 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
  • payvia
    • type: int
    • required
    • Payvia type id of the payvia type to use with this affiliate
  • 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
  • tax_id_or_ssn
    • type: string
  • ref
    • type: string
    • Tracking code to identifier who referred this affiliate.
  • minimum_payout
    • type: string
    • Threshold for generating affiliate payouts. Affiliate will not be paid until they earn at least this much.
  • join_ip
    • type: string

Example Request

POST


http://domain/api/affiliate/add_affiliate
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
payvia=1

  • Response:
[
    {
        "result":"Success","
        "message":{
            "loginid":"4003"
        }
    }
]

Example Code

PHP

<?php
$curl = curl_init();

$url = 'http://domain/api/affiliate/add_affiliate';

$headers = array(
    'api-key: 44b5498dbcb481a0d00b404c0169af62',
    'api-username: productsupport'
);

 $data = array(
    'username' => 'hello3',
    'password' => 'apitest',
    'firstname' => 'hello',
    'lastname' => 'test',
    'email' => 'hello3@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',
    'ref' => 'asdasd',
    'join_ip' => '192.168.1.1',
    'payvia' => 1,
);
   

$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);
?>