cristianpontes/zoho-crm-client-php
最新稳定版本:1.7
Composer 安装命令:
composer require cristianpontes/zoho-crm-client-php
包简介
Provides a clean readable PHP API to the Zoho Rest API
README 文档
README
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

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.
统计信息
- 总下载量: 54.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 55
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-04