shohag/zoho-inventory-sdk

SDK for ZOHO Inventory API.

1.0.3 2019-09-12 11:41 UTC

This package is auto-updated.

Last update: 2024-05-12 21:46:05 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));