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 Set 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 set to be today)
- end_time - (optional) (if empty, end time will set to be NEVER)
- cascadeid - only work if option is a xsell/upsell join option
Examples
Request
The following are examples of the requests you can make with this API function:
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 ) )