2017 © Pedro Peláez
 

library zohobooksapi

Zoho Books API v3 - PHP SDK

image

webleit/zohobooksapi

Zoho Books API v3 - PHP SDK

  • Thursday, June 14, 2018
  • by Skullbock
  • Repository
  • 1 Watchers
  • 3 Stars
  • 230 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 11 Versions
  • 38 % Grown

The README.md

Latest Version on Packagist Total Downloads, (*1)

Zoho Books API v3 - PHP SDK

This Library is a SDK in PHP that simplifies the usage of the Zoho Books Api version 3 (https://www.zoho.com/books/api/v3/) It provides both an interface to ease the interaction with the APIs without bothering with the actual REST request, while packaging the various responses using very simple Model classes that can be then uses with any other library or framework., (*2)

Installation

composer require webleit/zohobooksapi

Usage

In order to use the library, just require the composer autoload file, and then fire up the library itself. In order for the library to work, you need to be authenticated with the zoho apis., (*3)

Online Mode

require './vendor/autoload.php';

// setup the generic zoho oath client
$oAuthClient = new \Weble\ZohoClient\OAuthClient('[CLIENT_ID]', '[CLIENT_SECRET]');
$oAuthClient->setRefreshToken('[REFRESH_TOKEN]');
$oAuthClient->setRegion(\Weble\ZohoClient\Enums\Region::us());
$oAuthClient->useCache($yourPSR6CachePool);

// setup the zoho books client
$client = new \Webleit\ZohoBooksApi\Client($oAuthClient);
$client->setOrganizationId('[YOUR_ORGANIZATION_ID]');

// Create the main class
$zohoBooks = new \Webleit\ZohoBooksApi\ZohoBooks($client);

Offline Mode

This one is preferred when you need to autonomously renew the access token yourself. Used in all the "machine to machine" communication, and it's the best way when you are using the apis to, for example, sync with a 3rd party application, like your ERP or Ecommerce website. See https://github.com/Weble/ZohoClient#example-usage-offline-mode for more details on this., (*4)

require './vendor/autoload.php';

// setup the generic zoho oath client
$oAuthClient = new \Weble\ZohoClient\OAuthClient('[CLIENT_ID]', '[CLIENT_SECRET]');
$oAuthClient->setRefreshToken('[REFRESH_TOKEN]');
$oAuthClient->setRegion(\Weble\ZohoClient\Enums\Region::us());
$oAuthClient->useCache($yourPSR6CachePool);
$oAuthClient->offlineMode();

// Access Token
$accessToken = $oAuthClient->getAccessToken();
$isExpired = $oAuthClient->accessTokenExpired();

// setup the zoho books client
$client = new \Webleit\ZohoBooksApi\Client($oAuthClient);
$client->setOrganizationId('[YOUR_ORGANIZATION_ID]');

// Create the main class
$zohoBooks = new \Webleit\ZohoBooksApi\ZohoBooks($client);

API calls

To call any Api, just use the same name reported in the api docs. You can get the list of supported apis using the getAvailableModules() method, (*5)

$zohoBooks->getAvailableModules();

You can, for example, get the list of invoices by using:, (*6)

$invoices = $zohoBooks->invoices->getList();

or the list of contacts, (*7)

$contacts = $zohoBooks->contacts->getList();

List calls

To get a list of resources from a module, use the getList() method, (*8)

$invoices = $zohoBooks->invoices->getList();

It's possible to pass through some parameters to filter the result (see the zoho books api docs for some examples), (*9)

$invoices = $zohoBooks->invoices->getList(['status' => 'unpaid']);

In order to navigate the pages, just use the "page" and "per_page" parameters in the getList call, (*10)

$invoices = $zohoBooks->invoices->getList(['status' => 'unpaid', 'page' => 3, 'per_page' => 200]);

Return Types

Any "list" api call returns a Collection object, which is taken for Laravel Collection package. You can therefore use the result as Collection, which allows mapping, reducing, serializing, etc, (*11)

$invoices = $zohoBooks->invoices->getList();

$data = $invoices->toArray();
$json = $invoices->toJson();

// After fetch filtering in php
$filtered = $invoices->where('total', '>', 200);

// Grouping
$filtered = $invoices->groupBy('customer_id');

Any "resource" api call returns a Model object of a class dedicated to the single resource you're fetching. For example, calling, (*12)

$invoice = $zohoBooks->invoices->get('idoftheinvoice');
$id = $invoice->getId();
$data = $invoice->toArray();
$total = $invoice->total;

will return a \Webleit\ZohoBooksApi\Models\Invoice object, which is Arrayable and Jsonable, and that can be therefore used in many ways., (*13)

Zoho Books token expiration notes

  • Each access token is valid for only an hour and used only for the operations defined in the scope.
  • Refresh token does not expire. Use it to refresh access tokens when they expire.
  • You can only generate a maximum of five refresh tokens in a minute.

Contributing

Finding bugs, sending pull requests or improving the docs - any contribution is welcome and highly appreciated, (*14)

Versioning

Semantic Versioning Specification (SemVer) is used., (*15)

Copyright Weble Srl under the MIT license., (*16)

The Versions

14/06 2018

dev-master

9999999-dev

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

14/06 2018

dev-develop

dev-develop

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

14/06 2018

2.1.5

2.1.5.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

01/02 2018

2.1.3

2.1.3.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

01/02 2018

2.1.2

2.1.2.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

31/01 2018

2.1.1

2.1.1.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

17/01 2018

2.1.0

2.1.0.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

21/12 2017

2.0.3

2.0.3.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

19/12 2017

2.0.2

2.0.2.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

13/01 2017

2.0.0

2.0.0.0

Zoho Books API v3 - PHP SDK

  Sources   Download

MIT

The Requires

 

The Development Requires

api books zoho zohobooks

12/02 2016

1.0

1.0.0.0

Nacho, nacho man. I want to be a nacho man

  Sources   Download

MIT

The Requires

 

api books zoho zohobooks