REST API: deleting a field from a collection

Warning: You are viewing the documentation for the old REST API. We recommend using version 2 of the REST API.

When you send an HTTP DELETE request to the following URL, you’ll delete a field from a collection:

https://api.copernica.com/v1/collection/$id/field/$id?access_token=xxxx

The $id needs to be replaced by the numerical identifier, the ID, of the collection. The second needs to be replaced by the ID or the name of the field you want to delete.

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

// do the call
$api->delete("collection/1234/field/firstname");

The example above requires the CopernicaRestAPI class.

More information