PHP code example of lettingbox / vorensys

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

    

lettingbox / vorensys example snippets

 php
$vorensys = new Vorensys($client)
    ->setApiKey('KEY')
    ->setId('CUST_ID')
    ->setUsername('USERNAME')
    ->setPassword('PASSWORD');
$results = $vorensys->submit(new Application('Mr.', 'John', 'Doe', '[email protected]'));

$vorensys_application_id = $results['id'];
$vorensys_application_form_url = $result['url'];