REST API v4: POST documents (HTML)
This method is used to create a new document with the REST API. It uses an HTTP POST request to the following address:
https://api.copernica.com/v4/documents
After a successful call the ID of the created request is returned.
Available parameters
- template: ID of the template (required)
- name: name of the new document (required)
- description: description of the document
- from_address: array with a 'name' and 'email' for the from address
- subject: subject of the document
JSON example
The following JSON demonstrates how to use the API method:
{
    "template": "1234",
    "name": "my_test_document"
}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", 4);
// data to be sent to the api
$data = array(
    'template'      =>  '1234',
    'name'          =>  'my_test_document'
);
// do the call
$api->post("documents", $data);
// return id of created request if successfulThe example above requires the CopernicaRestApi class.