NATS4 REST API Add Option Rule
From TMM Wiki
Revision as of 19:10, 26 March 2015 by Tmmtobias0185 (talk | contribs)
POST /option/addrule
Description
- The 'option/addrule' endpoint/action is a feature in NATS4 that allows you to add option rule for your NATS join options using an API call.
Resource URL
- http://domain/api/v1/option/addrule
- Replace domain with the nats domain
- POST
Response Format
- JSON
- HTTP headers
Parameters
Paremeters must be sent with the request body. The examples below show the parameters sent as x-www-form-urlencoded
This api endpoint will allow you to add option rules by optionid, rule type, loginid, siteid, tourid, programid, billerid, country, start_time, end_time and cascadeid. These are parameters used to specify which option rule you're adding:
- optionid: The option id
- type: integer
- required
- rule_type: 'SHOW, HIDE, or IGNORE'
- type: integer
- required
- affid: The affiliate id
- type: integer
- optional
- siteid: The site id
- type: string
- required
- siteid: The site id
- type: integer
- optional
- tourid: The tour id
- type: string
- optional
- programid: the program id
- type: string
- optional
- billerid: the biller id
- type: integer
- optional
- start_time: (if empty, start time will be set to be today)
- type: string
- optional
- end_time: (if empty, end time will be set to be NEVER)
- type: string
- optional
- cascadeid: only applicable if the option is an xsell or upsell join option
- type: integer
- optional
Example Request
POST
http://domain/api/v1/option/addrule
- Response:
{ "result": "TRUE", "params": { "option_rule_id": "24" } }
Example Code
PHP
<?php $curl = curl_init(); $data = array( 'optionid' => '1', 'rule_type' => 'SHOW', 'affid' => '1', 'siteid' => '1', 'start_time' => '2015-03-15', 'end_time' => '2016-03-15' ); $url = 'http://domain/api/option/addrule'; $headers = array( 'api-key: 44b5498dbcb481a0d00b404c0169af62', 'api-username: tmm1phrvezsbu' ); 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);
Python
- This example requires pip and the request library which can be installed via pip by: 'pip install requests'
import requests import json url = 'http://domain/api/option/addrule' payload = { 'optionid': '1', 'rule_type': 'SHOW', 'affid': '1', 'siteid': '1', 'start_time': '2015-03-15', 'end_time': '2016-03-15' } headers = { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } res = requests.post(url, data=payload, headers=headers) print res.text
node.js
- This example requires npm and the request module which can be installed via npm by: 'npm install request'
var request = require('request'); data = { 'optionid': '1', 'rule_type': 'SHOW', 'affid': '1', 'siteid': '1', 'start_time': '2015-03-15', 'end_time': '2016-03-15' } var options = { url: 'http://domain/api/option/addrule', method: 'POST', form: data, json: true, headers: { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } }; function callback(error, response, body) { if (!error && response.statusCode == 200) { console.log(body); } else{ console.log(body); } } request(options, callback);
Curl
curl -X POST 'http://domain/api/option/addrule' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu" -H "Content-Type: application/x-www-form-urlencoded" -d 'optionid=1&rule_type=SHOW&affid=1&siteid=1&start_time=2015-03-15&end_time=2016-03-15'