Difference between revisions of "NATS4 REST API Get Option Rule"
From TMM Wiki
Jump to navigationJump to searchTmm vincent (talk | contribs) m (updated api url) |
|||
(4 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
| show_api_admin_section = true | | show_api_admin_section = true | ||
}} | }} | ||
− | == '''GET /option/ | + | == '''GET /option/rule''' == |
'''Description''' | '''Description''' | ||
*[[NATS4]] supports an API resource to get option rules and their associatied info | *[[NATS4]] supports an API resource to get option rules and their associatied info | ||
Line 8: | Line 8: | ||
'''Resource URL''' | '''Resource URL''' | ||
− | *<nowiki>http://domain/api | + | *<nowiki>http://domain/api/option/rule</nowiki> |
*Replace domain with the nats domain | *Replace domain with the nats domain | ||
Line 28: | Line 28: | ||
**'''''required''' | **'''''required''' | ||
− | + | * '''rule_type''': ("SHOW", "HIDE", "ALL" or "" (empty string). "" will display both "SHOW" and "HIDE" rules.) | |
**'''''type: string''''' | **'''''type: string''''' | ||
**'''''optional''' | **'''''optional''' | ||
Line 36: | Line 36: | ||
'''GET''' | '''GET''' | ||
− | <nowiki>http://domain/api | + | <nowiki>http://domain/api/option/rule</nowiki> |
*Response: | *Response: | ||
Line 123: | Line 123: | ||
$data_string = http_build_query($data); | $data_string = http_build_query($data); | ||
− | $url = 'http://domain/api | + | $url = 'http://domain/api/option/rule?'.$data_string; |
$headers = array( | $headers = array( | ||
− | ' | + | 'api-key: 44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username: tmm1phrvezsbu' |
); | ); | ||
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); | ||
Line 147: | Line 147: | ||
import requests | import requests | ||
− | url = 'http://domain/api | + | url = 'http://domain/api/option/rule' |
params = { | params = { | ||
Line 155: | Line 155: | ||
headers = { | headers = { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
Line 172: | Line 172: | ||
var options = { | var options = { | ||
− | url: 'http://domain/api | + | url: 'http://domain/api/option/rule', |
method: 'GET', | method: 'GET', | ||
qs: { | qs: { | ||
Line 180: | Line 180: | ||
json: true, | json: true, | ||
headers: { | headers: { | ||
− | ' | + | 'api-key': '44b5498dbcb481a0d00b404c0169af62', |
− | ' | + | 'api-username': 'tmm1phrvezsbu' |
} | } | ||
}; | }; | ||
Line 201: | Line 201: | ||
'''Curl''' | '''Curl''' | ||
<pre> | <pre> | ||
− | curl -X GET 'http://domain/api | + | curl -X GET 'http://domain/api/option/rule?optionid=1&rule_type=SHOW' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu" |
</pre> | </pre> | ||
[[Category:NATS4 API Articles]] | [[Category:NATS4 API Articles]] |
Latest revision as of 21:14, 11 January 2019
GET /option/rule
Description
- NATS4 supports an API resource to get option rules and their associatied info
Resource URL
- http://domain/api/option/rule
- Replace domain with the nats domain
- GET
Response Format
- JSON
- HTTP headers
Parameters
Paremeters can be sent as url encoded params.
- optionid: The option id
- type: integer
- required
- rule_type: ("SHOW", "HIDE", "ALL" or "" (empty string). "" will display both "SHOW" and "HIDE" rules.)
- type: string
- optional
Example Request
GET
http://domain/api/option/rule
- Response:
{ "result": "TRUE", "params": { "13": { "option_rule_id": "13", "optionid": "0", "rule_type": "SHOW", "identid": "4", "start_time": "2006-06-06 00:00:00", "end_time": "2006-06-06 00:00:00", "cascadeid": "0", "override_identifier_id": "4", "loginid": "0", "networkid": "0", "programid": "0", "siteid": "0", "tourid": "0", "adtoolid": "0", "subid1": "0", "subid2": "0", "billerid": "0", "countryid": "0", "promotionalid": "0" }, "16": { "option_rule_id": "16", "optionid": "0", "rule_type": "SHOW", "identid": "4", "start_time": "2014-06-12 15:27:42", "end_time": "0000-00-00", "cascadeid": "0", "override_identifier_id": "4", "loginid": "0", "networkid": "0", "programid": "0", "siteid": "0", "tourid": "0", "adtoolid": "0", "subid1": "0", "subid2": "0", "billerid": "0", "countryid": "0", "promotionalid": "0" }, "23": { "option_rule_id": "23", "optionid": "0", "rule_type": "SHOW", "identid": "4", "start_time": "2006-06-06 00:00:00", "end_time": "2014-12-31 02:26:16", "cascadeid": "0", "override_identifier_id": "4", "loginid": "0", "networkid": "0", "programid": "0", "siteid": "0", "tourid": "0", "adtoolid": "0", "subid1": "0", "subid2": "0", "billerid": "0", "countryid": "0", "promotionalid": "0" } } }
Example Code
PHP
<?php $curl = curl_init(); $data = array( 'optionid' => '1', 'rule_type' => 'SHOW' ); $data_string = http_build_query($data); $url = 'http://domain/api/option/rule?'.$data_string; $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); $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 url = 'http://domain/api/option/rule' params = { 'optionid': 1, 'rule_type': 'SHOW' } headers = { 'api-key': '44b5498dbcb481a0d00b404c0169af62', 'api-username': 'tmm1phrvezsbu' } res = requests.get(url, params=params, headers=headers) print res.json()
node.js
- This example requires npm and the request module which can be installed via npm by: 'npm install request'
var request = require('request'); var options = { url: 'http://domain/api/option/rule', method: 'GET', qs: { 'optionid': 1, 'rule_type': 'SHOW' }, 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 GET 'http://domain/api/option/rule?optionid=1&rule_type=SHOW' -H "api-key: 44b5498dbcb481a0d00b404c0169af62" -H "api-username: tmm1phrvezsbu"