PHPackages                             basetwosolutions/zoho-crm-client-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. basetwosolutions/zoho-crm-client-php

ActiveLibrary[HTTP &amp; Networking](/categories/http)

basetwosolutions/zoho-crm-client-php
====================================

Provides a clean readable PHP API to the Zoho Rest API

1.7(7y ago)06MITPHPPHP &gt;=5.3.3

Since Aug 8Pushed 6y agoCompare

[ Source](https://github.com/BaseTwoSolutions/zoho-crm-client-php)[ Packagist](https://packagist.org/packages/basetwosolutions/zoho-crm-client-php)[ Docs](https://cristianpontes.github.io/zoho-crm-client-php)[ RSS](/packages/basetwosolutions-zoho-crm-client-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (13)Used By (0)

Zoho CRM Client for PHP
=======================

[](#zoho-crm-client-for-php)

[![Build Status](https://camo.githubusercontent.com/c925af4c4b3a41294f4e4546cb7b7c7a79f11fcf3defe37cb9108b263b9465e4/68747470733a2f2f7472617669732d63692e6f72672f637269737469616e706f6e7465732f7a6f686f2d63726d2d636c69656e742d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/cristianpontes/zoho-crm-client-php)[![Latest Stable Version](https://camo.githubusercontent.com/16fe4069cad637862e9766102ec02ef34f2152920b372e302a4da565e26d365e/68747470733a2f2f706f7365722e707567782e6f72672f637269737469616e706f6e7465732f7a6f686f2d63726d2d636c69656e742d7068702f762f737461626c65)](https://packagist.org/packages/cristianpontes/zoho-crm-client-php)[![License](https://camo.githubusercontent.com/ecb419448e8a3bdf7dc81ebe9db5ad9058ea9dfdb1b234fb73ce13b7415d3d15/68747470733a2f2f706f7365722e707567782e6f72672f637269737469616e706f6e7465732f7a6f686f2d63726d2d636c69656e742d7068702f6c6963656e7365)](https://packagist.org/packages/cristianpontes/zoho-crm-client-php)
Provides a clean readable PHP API to the [Zoho Rest API](https://www.zoho.com/crm/help/api/).
This project was initially cloned from [this repository](https://github.com/christiaan/zohocrmclient) and improved with:

- New methods
- More features
- Friendly documentation

Prerequisites
-------------

[](#prerequisites)

- PHP 5.4 or above
- [CURL](http://php.net/manual/en/book.curl.php)

Easy Installation
-----------------

[](#easy-installation)

To install with [Composer](https://getcomposer.org/), simply require the latest version of this package.

```
composer require cristianpontes/zoho-crm-client-php
```

Make sure that the autoload file from Composer is loaded.

```
// somewhere early in your project's loading, require the Composer autoloader
// see: http://getcomposer.org/doc/00-intro.md
require 'vendor/autoload.php';
```

Usage Sample
------------

[](#usage-sample)

```
use CristianPontes\ZohoCRMClient\ZohoCRMClient;

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

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

// Just for debug
echo "";
print_r($records);
echo "";
```

Available Methods
-----------------

[](#available-methods)

- getRecords
- insertRecords
- updateRecords
- deleteRecords
- getDeletedRecordIds
- getRelatedRecords
- getRecordById
- searchRecords
- getSearchRecordsByPDC
- uploadFile
- downloadFile
- deleteFile
- getFields
- convertLead
- updateRelatedRecords

Documentation
-------------

[](#documentation)

All the methods previously mentioned are well explained in the [library documentation page](https://cristianpontes.github.io/zoho-crm-client-php/).
Also, the code is well documented too, so you'll be able to look at the methods, functions and check how they work.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 73.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~73 days

Recently: every ~110 days

Total

10

Last Release

2899d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/966c1b52b6a4622d5b9b0d3976d8978130df307b4b96a87bd90592b5ceba8061?d=identicon)[b2leochenftw](/maintainers/b2leochenftw)

---

Top Contributors

[![cristianpontes](https://avatars.githubusercontent.com/u/10966598?v=4)](https://github.com/cristianpontes "cristianpontes (14 commits)")[![leochenftw](https://avatars.githubusercontent.com/u/8662044?v=4)](https://github.com/leochenftw "leochenftw (3 commits)")[![filnko](https://avatars.githubusercontent.com/u/539046?v=4)](https://github.com/filnko "filnko (1 commits)")[![pikulsky](https://avatars.githubusercontent.com/u/475660?v=4)](https://github.com/pikulsky "pikulsky (1 commits)")

---

Tags

apiclientsdkrestcrmZoho

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/basetwosolutions-zoho-crm-client-php/health.svg)

```
[![Health](https://phpackages.com/badges/basetwosolutions-zoho-crm-client-php/health.svg)](https://phpackages.com/packages/basetwosolutions-zoho-crm-client-php)
```

###  Alternatives

[cristianpontes/zoho-crm-client-php

Provides a clean readable PHP API to the Zoho Rest API

5554.0k](/packages/cristianpontes-zoho-crm-client-php)[artesaos/laravel-linkedin

Linkedin API integration for Laravel and Lumen 5

5666.5k](/packages/artesaos-laravel-linkedin)[repat/plentymarkets-rest-client

REST Client for Plentymarkets

1510.0k](/packages/repat-plentymarkets-rest-client)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
