REST API v4: GET message (HTML)
If you want to get some general information from a mail sent with Publisher you can make a simple a GET request to the following URL:
https://api.copernica.com/v4/html/message/$id
where $id
is the unique string that identifies a message.
You can find the call to retrieve a Marketing Suite message here.
Return value
A JSON with the general information about the message.
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("html/message/{$messageID}"));
The example above requires the CopernicaRestApi class.