All Projects → cristianpontes → Zoho Crm Client Php

cristianpontes / Zoho Crm Client Php

Licence: mit
[DEPRECATED] Provides a clean readable PHP API to the Zoho Rest API.

Projects that are alternatives of or similar to Zoho Crm Client Php

Os Tmpdir
[DEPRECATED] Node.js os.tmpdir() ponyfill
Stars: ✭ 31 (-40.38%)
Mutual labels:  deprecated
Multiple Scms Plugin
Stars: ✭ 39 (-25%)
Mutual labels:  deprecated
Mricrogl
DEPRECATED development has moved to https://github.com/rordenlab/MRIcroGL12
Stars: ✭ 49 (-5.77%)
Mutual labels:  deprecated
Brunch With Vue
[deprecated] A skeleton application utilizing vue, vuex, vue-resource and vue-router.
Stars: ✭ 32 (-38.46%)
Mutual labels:  deprecated
Helm Registry
The helm registry to store and deliver charts (Deprecated since compass v2.9)
Stars: ✭ 36 (-30.77%)
Mutual labels:  deprecated
Findbugs Plugin
Jenkins findbugs plugin
Stars: ✭ 43 (-17.31%)
Mutual labels:  deprecated
Prey Bash Client
DEPRECATED - Project no longer supported, please consider using https://github.com/prey/prey-node-client instead
Stars: ✭ 882 (+1596.15%)
Mutual labels:  deprecated
Wearhttp
This library provides a means to access the content on the Web easily from AndroidWear. Welcome pull request
Stars: ✭ 51 (-1.92%)
Mutual labels:  deprecated
Strano
Strano is a web UI to run any tasks (but mostly Capistrano) from any of your git repo.
Stars: ✭ 36 (-30.77%)
Mutual labels:  deprecated
Androidffmpeg
[DEPRECATED] FFmpeg build for android random architectures with example jni
Stars: ✭ 1,049 (+1917.31%)
Mutual labels:  deprecated
Ng2 Typeahead
Autocomplete component for Angular 2
Stars: ✭ 33 (-36.54%)
Mutual labels:  deprecated
Libvirt
DEPRECATED Vanilla dockerized libvirt image, used as a base for kubevirt
Stars: ✭ 34 (-34.62%)
Mutual labels:  deprecated
Connect Python Sdk
Python client library for the Square Connect APIs
Stars: ✭ 45 (-13.46%)
Mutual labels:  deprecated
Finder colors
Set the color of files/folders for OSX Finder from the command line.
Stars: ✭ 31 (-40.38%)
Mutual labels:  deprecated
Codeigniter Base Model
⛔️DEPRECATED CodeIgniter base CRUD model to remove repetition and increase productivity
Stars: ✭ 1,052 (+1923.08%)
Mutual labels:  deprecated
Overwatch Js
Overwatch NodeJS API : Retrieve informations about heroes/players from Overwatch Official Website
Stars: ✭ 27 (-48.08%)
Mutual labels:  deprecated
Tmwa Client Data
DEPRECATED: The data used by the ManaPlus client for the tmwAthena server used by The Mana World Legacy. All further development will take place in the "client-data" repo.
Stars: ✭ 42 (-19.23%)
Mutual labels:  deprecated
Malware
Malware related code
Stars: ✭ 51 (-1.92%)
Mutual labels:  deprecated
Puppet Staging
⛔️ Deprecated in favor of puppet-archive
Stars: ✭ 50 (-3.85%)
Mutual labels:  deprecated
Winternote
[Deprecated] Semantic WYSIWYG editor.
Stars: ✭ 47 (-9.62%)
Mutual labels:  deprecated

[Deprecated] Zoho CRM Client for PHP

This project is no longer maintained and has been deprecated in favor of the official Zoho PHP SDK.
For more information, please visit Zoho's official documentation
No Maintenance Intended

Build Status Latest Stable Version License
Provides a clean readable PHP API to the Zoho Rest API.
This project was initially cloned from this repository and improved with:

  • New methods
  • More features
  • Friendly documentation

Prerequisites

  • PHP 5.4 or above
  • CURL

Easy Installation

To install with Composer, 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

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 "<pre>";
print_r($records);
echo "</pre>";

Available Methods

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

Documentation

All the methods previously mentioned are well explained in the library documentation page.
Also, the code is well documented too, so you'll be able to look at the methods, functions and check how they work.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].