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/v3/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", 3);

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

This method requires the CopernicaRestAPI class.

More information