shohag / zoho-creator-api
Simple Zoho creator api php client.
1.0.1
2019-11-22 15:34 UTC
Requires
- php: >=5.6
- ext-curl: *
- ext-fileinfo: *
- ext-json: *
- ext-simplexml: *
This package is auto-updated.
Last update: 2025-03-23 03:44:14 UTC
README
#Zoho creator API Installation
The preferred way to install this extension is through composer.
Either run
composer require shohag/zoho-creator-api
or add
"shohag/zoho-creator-api": "*"
to the require section of your composer.json
file.
Usage
require_once 'vendor/autoload.php';
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');