NATS4 API Add Option Rule
From TMM Wiki
Jump to navigationJump to searchThe Add Option Rule API function is a feature in NATS4 that allows you to add option rule for your NATS join options using an API call.
Filters
This function 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 - (required)
- rule_type - (required) ("SHOW", "HIDE" and "IGNORE")
- affid - (optional)
- siteid - (optional)
- tourid - (optional)
- programid - (optional)
- billerid - (optional)
- country - (optional)
- start_time - (optional) (if empty, start time will be set to be today)
- end_time - (optional) (if empty, end time will be set to be NEVER)
- cascadeid - only applicable if the option is an xsell or upsell join option
Examples
Request
The following are examples of the requests you can make with this API function using the following parameters:
optionid, rule_type, start_time, end_time
$data = Array( 'optionid' => 1, 'rule_type' => 'SHOW', 'start_time' => '2013-12-18', 'end_time' => '2013-12-21', ); $result = $client->call('add_option_rule', $data, 'natsapiadmin_wsdl');
Response
Array ( [0] => TRUE [1] => Array ( [option_rule_id] => 124 ) )