Difference between revisions of "NATS4 REST API Set Payvia Rule"
From TMM Wiki
Jump to navigationJump to searchLine 29: | Line 29: | ||
*'''action''': ''Can be "add", "update", or "remove"'' | *'''action''': ''Can be "add", "update", or "remove"'' | ||
**'''''required''''' | **'''''required''''' | ||
− | |||
*'''type''': ''Can be "ignored", "enabled", or "disabled"''' | *'''type''': ''Can be "ignored", "enabled", or "disabled"''' | ||
**'''''required''''' | **'''''required''''' | ||
− | |||
*'''payvia_type_id''': ''Specifies the numeric payvia type id'' | *'''payvia_type_id''': ''Specifies the numeric payvia type id'' | ||
**'''''optional''''' | **'''''optional''''' | ||
− | |||
*'''payvia_rule_id''': ''Specifies the numeric payvia rule id'' | *'''payvia_rule_id''': ''Specifies the numeric payvia rule id'' | ||
**'''''optional''''' | **'''''optional''''' | ||
+ | |||
'''HTTP Headers''' | '''HTTP Headers''' | ||
Line 159: | Line 157: | ||
'''Shell''' | '''Shell''' | ||
+ | <pre> | ||
curl -X PATCH 'http://domain/api/v1/payviarule?payvia_type_id=1&action=add&type=enabled&loginid=1' -H "api_key: 44b5498dbcb481a0d00b404c0169af62" -H "api_username: tmm1phrvezsbu" | curl -X PATCH 'http://domain/api/v1/payviarule?payvia_type_id=1&action=add&type=enabled&loginid=1' -H "api_key: 44b5498dbcb481a0d00b404c0169af62" -H "api_username: tmm1phrvezsbu" | ||
+ | </pre> | ||
[[Category:NATS4 API Articles]] | [[Category:NATS4 API Articles]] |
Revision as of 20:41, 10 March 2015
PATCH payviarule
Sets the payvia rule given the specified parameters.
Resource URL
- http://domain/api/v1/payviarule
- Replace domain with the nats domain
Response Format
- JSON
Authentication
- HTTP headers
Parameters
URL/Request Body params
- loginid: Specifies the payvia type id
- required
- action: Can be "add", "update", or "remove"
- required
- 'type: Can be "ignored", "enabled", or "disabled"
- required
- payvia_type_id: Specifies the numeric payvia type id
- optional
- payvia_rule_id: Specifies the numeric payvia rule id
- optional
HTTP Headers
- api_key: Affiliate api key
- api_username: Affiliate user name
Example Request
PATCH
http://domain/api/v1/payviarule
- Response:
{ "result": "TRUE", "params": { "payviaid": "1", "rule_type": 1, "login": [ "tmm1phrvezsbu" ], "end_time": "NEVER", "payvia_rule_id": "51" } }
Example Code
*NOTE: Example Code segments below all send url encoded data. If you would like to send data with the request body of the PATCH request, it is done the same way as a POST request. See any POST API endpoint
PHP
<?php $data = array( 'payvia_type_id' => 1, 'action' => 'add', 'type' => 'enabled', 'loginid' => 1 ); $data_string = http_build_query($data); $url = 'http://nats.tobias-dev.com/api/v1/payviarule?'.$data_string; $curl = curl_init(); $headers = array( 'api_key: 44b5498dbcb481a0d00b404c0169af62', 'api_username: tmm1phrvezsbu' ); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "PATCH"); 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://nats.tobias-dev.com/api/v1/payviarule' headers = { 'api_key': '44b5498dbcb481a0d00b404c0169af62', 'api_username': 'tmm1phrvezsbu' } params = { 'payvia_type_id': 1, 'action': 'add', 'type': 'enabled', 'loginid': 1 } res = requests.patch(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://nats.tobias-dev.com/api/v1/payviarule', method: 'PATCH', json: true, qs: { 'payvia_type_id': 1, 'action': 'add', 'type': 'enabled', 'loginid': 1 }, 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);
Shell
curl -X PATCH 'http://domain/api/v1/payviarule?payvia_type_id=1&action=add&type=enabled&loginid=1' -H "api_key: 44b5498dbcb481a0d00b404c0169af62" -H "api_username: tmm1phrvezsbu"