PHP code example of lemonink / lemonink-php
1. Go to this page and download the library: Download lemonink/lemonink-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lemonink / lemonink-php example snippets
nt = new LemonInk\Client("your-api-key");
$transaction = new LemonInk\Models\Transaction();
$transaction->setMasterId("id-of-a-master-file");
$transaction->setWatermarkValue("Text you want to have embedded in your file");
$client->save($transaction);
echo "Download your file from {$transaction->getUrl()}\n";