PHP code example of mateusgalasso / clicksign

1. Go to this page and download the library: Download mateusgalasso/clicksign 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/ */

    

mateusgalasso / clicksign example snippets

 php
$response = (new Clicksign())->createDocument($path, $clicksignPath = null, $mimetype = 'application/pdf', $deadline = null, $autoClose = true, $locale = 'pt-BR', $sequence_enabled = false);
 php
$response =  (new Clicksign())->signerToDocument(String $document_key, $signer_key, $sign_as = 'approve', $message = null);
 php
$response =  (new Clicksign())->visualizaDocumento($DocumentKey);
 php
$response = (new Clicksign())->cancelDocument($DocumentKey);
 php
$response = (new Clicksign())->deleteDocument($DocumentKey);
 php
$response = (new Clicksign())->notificationsByEmail($signer_key, $message = null);