REST API v3: DELETE interest
You can send an HTTP DELETE request to the following address to delete an interest:
https://api.copernica.com/v3/interest/$id?access_token=xxxx
The $id
needs to be replaced by the numerical identifier of the interest
that you want to remove.
PHP example
The following example demonstrates how to make a call using this method.
// dependencies
require_once('copernica_rest_api.php');
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 3);
// execute the call
$api->delete("interest/{$interestID}");
The example above requires the CopernicaRestApi class.