02/09
2016
dev-master
9999999-devAssently API for Laravel
MIT
The Requires
Wallogit.com
2017 © Pedro Peláez
Assently API for Laravel
Install with composer by running composer require eklundkristoffer/assently, (*1)
Add Assently\AssentlyServiceProvider to your providers array., (*2)
Add following lines to your .env file and update them with your own keys:, (*3)
ASSENTLY_DEBUG=true ASSENTLY_KEY=<KEY_HERE> ASSENTLY_SECRET=<SECRET_HERE>
$assently = new Assently\Assently;
$assently->authenticate(env('ASSENTLY_KEY'), env('ASSENTLY_SECRET'));
$data = [
'name' => 'Employmeent agreement '. rand(111, 999),
'NameAlias' => 'employmeent-agreement-'. rand(111, 999),
'AllowedSignatureTypes' => [
'electronicid'
],
'Documents' => [
$assently->document()->create('path/to/document.pdf')
],
"Parties" => [
$assently->party()->create([
'Name' => 'John Doe',
'EmailAddress' => 'johndoe@gmail.com',
'AnyoneCanSign' => false
])
]
];
$assently->case()->create($data)->send();
$assently = new Assently\Assently;
$assently->authenticate(env('ASSENTLY_KEY'), env('ASSENTLY_SECRET'));
$assently->case()->find('5a0e0869-6807-4b79-3712-466ea5cca5ce')->remind();
Assently API for Laravel
MIT