Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.05 KB

rest-put-interest.md

File metadata and controls

44 lines (29 loc) · 1.05 KB

REST API: PUT interest

You can update an interest by sending an HTTP PUT request to the following URL:

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

Replace the $id by the ID of the interest that you want to update.

Available parameters

The following parameters can be added to the call:

  • name: New name for the interests.
  • group: New group name for the interest. This does not affect interests currently in this group.

PHP Example

The following PHP script demonstrates how to use this API method:

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

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

// data for the method
$data = array(
    'name'  =>  "soccer",
    'group' =>  "sports"
);

// execute the call and print the results
$api->put("interest/{$interesseID}/", $data);

This example requires the REST API class.

More information