Git Product home page Git Product logo

zoho-crm-client-php's Introduction

Zoho CRM Client for PHP

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.3 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.

zoho-crm-client-php's People

Contributors

cristianpontes avatar filnko avatar pikulsky avatar

Watchers

James Cloos avatar The Digital Orchard ๐Ÿ‡จ๐Ÿ‡ฆ avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.