REST API v4: GET logfiles (dates)
Copernica keeps logfiles about several things such as clicks, opens,
errors, accepted messages, etc. See
the article on retrieving logfile names
for more information on available logfiles. These logfiles can be downloaded with
the API. By sending an HTTP GET request to the following URL you will
get a list of all dates we have kept logfiles of.
https://api.copernica.com/v4/logfiles
Returned fields
This method returns a JSON array of date strings. To download a logfile please see the links under "More information".
PHP Example
The following PHP script demonstrates how to use the API method:
// dependencies
require_once('CopernicaRestAPI.php');
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 4);
// do the call, and print result
print_r($api->get("logfiles"));
The example above requires the CopernicaRestApi class.