shohag/zoho-inventory-sdk

SDK for ZOHO Inventory API.

Installs: 68

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 11

Open Issues: 0

pkg:composer/shohag/zoho-inventory-sdk

1.0.3 2019-09-12 11:41 UTC

This package is auto-updated.

Last update: 2025-10-13 01:03:20 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));