shohag/zoho-creator-api

Simple Zoho creator api php client.

1.0.1 2019-11-22 15:34 UTC

This package is auto-updated.

Last update: 2024-04-23 01:24:47 UTC


README

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');