REST API: PUT minirule

Warning: You are viewing the documentation for the old REST API. We recommend using version 2 of the REST API.

A minirule is to a miniview what a rule is to a view. A method to edit the properties of an existing minirule can be called by sending an HTTP PUT request to the following URL:

https://api.copernica.com/v1/minirule/$id?access_token=xxxx

The $id needs to be replaced with the ID of the minirule you want to edit the properties of.

Available data

The following keys can be placed in the message body of the HTTP PUT command:

  • name: name of the rule
  • view: ID of the selection that the rule belongs to
  • conditions: array of conditions for the rule
  • inverted: boolean value to indicate whether the rule should be inverted. If set to "True" only profiles not conforming to the conditions are selected
  • disabled: boolean value to indicate whether the rule should be disabled or not

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");

// declare the id of the rule that you want to edit
$id = 1;

// data to be sent to the api
$data = array(      
    'name'   =>  'new rule name',
);

// do the call, and print result
print_r($api->put("minirule/{$id}", $data));

The example above requires the CopernicaRestApi class.

More information