PHP code example of frankperez87 / autocheck

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

    

frankperez87 / autocheck example snippets




t AutoCheck Account Credentials
$account = new AutoCheck\Account('Customer ID Here', 'Password Here', 'Secondary Customer Id Here');

// Optional: You can change your language for the report, the default is English.
// $account->setLanguage('ES');

// Instantiate Object
$AutoCheck = new AutoCheck\GetLink($account);

// Return AutoCheck Report
echo $AutoCheck->requestLinkForVin('VIN Goes Here');