REST API v1: GET emailingdocument
Warning: You are viewing the documentation for the old REST API. We recommend using our latest version of the REST API.
A method to request all metadata from an emailingdocument. This method does not support parameters. By sending a GET request to the following URL, you can fetch the emailingdocument metadata:
https://api.copernica.com/v1/emailingdocument/$id?access_token=xxxx
where $id
should be replaced by the identifier of the emailingdocument you want
to get the metadata of.
Returned fields
-
id: unique numerical identifier
-
template_id: unique numerical identifier of template
-
name: name of document
-
from_address: from address of document
-
subject: subject of document
-
source: source of document
PHP example
The following example demonstrates how to use this method:
// dependencies
require_once('copernica_rest_api.php');
// change this into your access token
$api = new CopernicaRestApi("your-access-token");
// do the call, and print result
print_r($api->get("emailingdocument/1234"));
The example above requires the CopernicaRestApi class.