2017 © Pedro Peláez
 

library zohocrmclient

Provides a clean readable PHP API to the Zoho Rest API

image

broklyngagah/zohocrmclient

Provides a clean readable PHP API to the Zoho Rest API

  • Thursday, November 17, 2016
  • by broklyngagah
  • Repository
  • 1 Watchers
  • 0 Stars
  • 192 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 11 Forks
  • 0 Open issues
  • 6 Versions
  • 17 % Grown

The README.md

ZohoCRMClient

THE MAIN REPOSITORY IS NO LONGER MAINTENACE. I USE THIS FOR MY CUSTOM PROJECT.

Main Repository, (*1)

Scrutinizer Quality Score Build Status, (*2)

Provides a clean readable PHP API to the Zoho Rest API., (*3)

Usage

use Christiaan\ZohoCRMClient\ZohoCRMClient;

$client = new ZohoCRMClient('Leads', 'yourAuthKey');

$records = $client->getRecords()
    ->selectColumns('First Name', 'Last Name', 'Email')
    ->sortBy('Last Name')->sortAsc()
    ->since(date_create('last week'))
    ->request();

echo 'Content: ' . print_r($records, true) . PHP_EOL;

Using custom transport settings to enable logging

$buzzTransport = new BuzzTransport(
    new \Buzz\Browser(new \Buzz\Client\Curl()),
    'https://crm.zoho.com/crm/private/xml/'
);
$buzzTransport->setLogger($logger);

$transport = new XmlDataTransportDecorator(
    new AuthenticationTokenTransportDecorator(
        'yourAuthKey',
        $buzzTransport
    )
);

$client = new ZohoCRMClient('Leads', $transport);

Implemented Calls

At the moment only the following calls are supported - getRecords - getRecordById - insertRecords - updateRecords - getFields, (*4)

It is rather easy to add new calls, look at one of the classes in the Request dir for examples. After the Request class is made it might be necessary to alter the parsing of the response XML in the XmlDataTransportDecorator class., (*5)

The Versions

17/11 2016

dev-master

9999999-dev https://github.com/broklyngagah/zohocrmclient

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christiaan Baartse

crm api client zoho

17/11 2016

0.9.4

0.9.4.0 https://github.com/broklyngagah/zohocrmclient

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christiaan Baartse

crm api client zoho

05/01 2016

0.9.3

0.9.3.0 http://christiaan.github.io/zohocrmclient

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christiaan Baartse

crm api client zoho

28/02 2014

0.9.2

0.9.2.0

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christiaan Baartse

crm api client zoho

18/02 2014

0.9.1

0.9.1.0

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christiaan Baartse

crm api client zoho

20/08 2013

0.9.0

0.9.0.0

Provides a clean readable PHP API to the Zoho Rest API

  Sources   Download

MIT

The Requires

 

by Christiaan Baartse

crm api client zoho