shohag / zoho-inventory-sdk
SDK for ZOHO Inventory API.
1.0.3
2019-09-12 11:41 UTC
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2025-03-12 23:46:34 UTC
README
Unofficial ZOHO Inventory API SDK for PHP
Installation
The preferred way to install this extension is through composer.
Either run
composer require shohag/zoho-inventory-sdk
or add
"shohag/zoho-inventory-sdk": "*"
to the require section of your composer.json
file.
Usage
require_once 'vendor/autoload.php';
use shohag\ZohoInventorySDK\ZohoInventory;
$inventory = new ZohoInventory(array('accessToken' => 'your auth token'), 'organizationId' => 'your org id'));
$inventory->listContacts(); //get all contacts
die(var_dump($inventory));