REST API: PUT unsubscribe profile

You can execute the setup unsubscribe behavior of a profile in the collection of a database by sending an HTTP PUT request to the following URL:

https://api.copernica.com/v2/profile/$id/unsubscribe?access_token=xxxx

The variable $id should be replaced with the ID of the profile you want to unsubscribe.

Body data

The request does not need any additional data to be sent in the body. The CopernicaRestApi class class does require a body to be sent, so in this case we use an empty array.

PHP example

The following PHP script demonstrates how the API method can be called.

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

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

// body data
$data = array();

// do the call
$api->put("profile/{$profileID}/unsubscribe", $data));

The example above requires the CopernicaRestApi class.

More information