REST API: POST miniview rebuild

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

https://api.copernica.com/v4/miniview/$id/rebuild

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

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

This method requires the CopernicaRestAPI class.

More information