REST API v1: GET rule conditions
Warning: You are viewing the documentation for the old REST API. We recommend using our latest version of the REST API.
A method to request all conditions from a rule. This method does not support parameters. It is called by sending an HTTP GET request to the following URL:
https://api.copernica.com/v1/rule/$id/conditions?access_token=xxxx
In this, $id
needs to be replaced by the numerical identifier or the name of the rule you wish to request the conditions for.
Available parameters
There are no available parameters for this method.
Returned fields
This method returns a JSON rule object with the following properties:
- id: numeric ID of the condition
- type: type of condition
- rule: numeric ID of the rule the condition belongs to
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
- Export conditions
- Field conditions
- Interest conditions
- LastContact conditions
- Miniview conditions
- SMS conditions
- Todo conditions
- Survey conditions
- Part conditions
- ReferView conditions
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");
// do the call, and print result
print_r($api->get("rule/1234/conditions"));
The example above requires the CopernicaRestApi class.