REST API v3: POST minirule condition
A method to add a condition for a minirule. It is called by sending an HTTP POST request to the following URL:
https://api.copernica.com/v3/minirule/$id/conditions?access_token=xxxx
In this, $id
needs to be replaced by the numerical identifier or the
name of the minirule you wish to edit the conditions of. After a successful
call the ID of the created request is returned.
Available parameters
The message body can hold the following properties for a condition:
- type: type of condition
Based on the condition type, specific properties are set. For an overview of the supported conditions and the properties that they support, check the specific articles:
- Change conditions
- Date conditions
- DoubleField conditions
- Email conditions
- Field conditions
- Interest conditions
- LastContact conditions
- Miniview conditions
- SMS conditions
- Todo conditions
- Survey conditions
- Part conditions
- ReferView conditions
JSON example
The following JSON demonstrates how to use the API method:
{
"type": "field",
"field": "has children",
"value": "yes"
}
PHP example
The following example demonstrates how to use this method:
// dependencies
require_once('copernica_rest_api.php');
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 3);
// parameters to pass to the call
$data = array(
'type' => 'field',
'field' => 'has children',
'value' => 'yes'
)
// do the call
$result = $api->post("minirule/{$ruleID}/conditions", $data);
// print the result
print_r($result);
The example above requires the CopernicaRestApi class.