NATS For Networks REST Add Tracking Domain

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

Template:NATS For Networks Manual

POST /offer/add_tracking_domain

Description

  • add_tracking_domain adds a new tracking domain

Resource URL

  • http://domain/api/offer/add_tracking_domain
  • Enable a new tracking domain for the network

Response Format

  • JSON

Request Method

  • POST

Authentication

  • HTTP headers

Parameters

  • domain
  • redirect_domain
    • type: string
    • url destination for non tracking requests. This prevents the affiliate portal from displaying on this domain.
  • template_protect
    • type: Bool
    • if true, an error message will display instead of the affiliate portal for this domain.


Example Request

POST

http://domain/api/offer/add_tracking_domain
domain=https://t.mydomain.com
template_protect=TRUE

  • Response:
{
  "result":"Success",
  "message":"Access modified"
}

Example Code

PHP

<?php 
$url = 'http://domain/api/offer/add_tracking_domain';
$curl = curl_init(); 
 
$headers = array( 
    'api-key: 44b5498dbcb481a0d00b404c0169af62', 
    'api-username: productsupport' 
); 

$data = Array(
  'domain' => 'https://t.mydomain.com',
  'template_protect' => TRUE,

);   

curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); 
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($curl, CURLOPT_URL, $url); 

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