Laravel package for integration with ClickSign services
You can install the package via composer:
composer require mateusgalasso/clicksign
fill in the required variables
CLICKSIGN_ACCESS_TOKEN=
CLICKSIGN_DEV_MODE=true //In production it must be false to get the clicksign production path
CLICKSIGN_DEV_URL=https://sandbox.clicksign.com
CLICKSIGN_PROD_URL=https://app.clicksign.com
$response = (new Clicksign())->createDocument($path, $clicksignPath = null, $mimetype = 'application/pdf', $deadline = null, $autoClose = true, $locale = 'pt-BR', $sequence_enabled = false);
$response = (new Clicksign())->createSigner(String $email, String $name, $phoneNumber = null, $documentation = false, $birthday = null, $has_documentation = false);
$response = (new Clicksign())->signerToDocument(String $document_key, $signer_key, $sign_as = 'approve', $message = null);
$response = (new Clicksign())->visualizaDocumento($DocumentKey);
$response = (new Clicksign())->cancelDocument($DocumentKey);
$response = (new Clicksign())->deleteDocument($DocumentKey);
$response = (new Clicksign())->notificationsByEmail($signer_key, $message = null);
Please see CHANGELOG for more information what has changed recently.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.