PHP code example of shohag / zoho-creator-api

1. Go to this page and download the library: Download shohag/zoho-creator-api 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/ */

    

shohag / zoho-creator-api example snippets



use shohag\ZohoCreatorAPI\CreatorAPI;

$conf = array(
            'applicationOwner' => 'your application owner',
            'applicationName' => 'your application Name',
            'authToken' => 'your auth Token',
        );

$creator = new CreatorAPI($conf);
echo $creator->allRecords('view_name');