REST API: PUT miniview rebuild

The HTTP PUT call to rebuild a mini selection can be found at the following address:

https://api.copernica.com/v2/miniview/$id/rebuild?access_token=xxxx

The $id in the URL should be replaced by the unique identifier of the mini selection.

PHP example

The following example demonstrates how to use this method.

// dependencies
require_once('copernica_rest_api.php');

// change this to your access token
$api = new CopernicaRestAPI("your-access-token", 2);

// voer het verzoek uit
$api->post("miniview/{$miniviewID}/rebuild", $data);

This method requires the CopernicaRestAPI class.

More information