PHP code example of chaplean / zoho-books-client-bundle

1. Go to this page and download the library: Download chaplean/zoho-books-client-bundle 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/ */

    

chaplean / zoho-books-client-bundle example snippets


new Chaplean\Bundle\ZohoBooksClientBundle\ChapleanZohoBooksClientBundle(),

$response = $zohoBooksApi->getEstimate()
    ->bindUrlParameters(['id' => 'df154f1fds4f54dsf15'])
    ->exec();
    
if ($response->succeeded()) {
    $content = $response->getContent();
    // your code
}