REST API v3: PUT senderdomain
This method is used to update an existing senderdomain with the REST API. It uses an HTTP PUT request to the following address:
https://api.copernica.com/v3/senderdomain/$id?access_token=xxxx
Replace the $id
with the identifier of the senderdomain you want to edit.
Available parameters
Parameter | Description |
---|---|
tracking | (optional) The domain that you want to register impressions on. |
bounces | (optional) The domain that you want to register bounces on. |
JSON example
The following JSON demonstrates how to use the API method:
{
"tracking": "tracking.mysenderdomain.com",
"bounces": "bounces.damian.nl"
}
PHP example
The following PHP script demonstrates how to use the API method:
// dependencies
require_once("copernica-rest-api.php");
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 3);
// data to be sent to the api
$data = array(
'tracking' => 'tracking.mysenderdomain.com',
'bounces' => 'bounces.mysenderdomain.com'
);
// do the call
$api->put("senderdomain/{$id}", $data);
The example above requires the CopernicaRestApi class.