Release Notes - PHP SDK

Release Notes - PHP SDK

ZOHO CRM/PHP SDK 2.0.1

Install command
  1. composer require zohocrm/php-sdk:2.0.1
Notes
  1. Enhancement
    1. Tag names can contain spaces in between them, while associating with records.
    2. Tag names can be retrieved as "ZCRMTag" objects in records function.
ZOHO CRM/PHP SDK 2.0.0

Install command
  1. composer require zohocrm/php-sdk:2.0.0
Notes
  1. Core Enhancements
    1. Configuration details should be passed ONLY as a map (array). Configuration properties files are not supported.
    2. Current user should be set in the configuration map or by using ZCRMRestClient::setCurrentUser('$userEmailId') function.
  2. Other Enhancements
    1. PSR-4 standards followed.
    2. Line tax support provided for Inventory modules.
    3. Line item can now be added, updated or deleted. (This costs 2 API Credits).
    4. Org tax API supported.
    5. Trigger support given for specific(single) create and update operations.
    6. Lead Assignment rule supported.
    7. Custom DB support provided.
    8. Duplicate check fields support provided for upsert record.
    9. Additional details can be added to Convert Lead operation.
    10. Criteria pattern and condition can be extracted directly in customview API.
    11. Multiple clients are supported.
Documentation for the previous versions can be found here.


ZOHO CRM/PHP SDK 1.1.8

Install command
  1. composer require zohocrm/php-sdk:1.1.8
Notes
  1. Enhancement
    1. Lead assignment rule support given for single create and bulk create of records.
ZOHO CRM/PHP SDK 1.1.7

Install command
  1. composer require zohocrm/php-sdk:1.1.7
Notes
  1. Issue fix
    1. Setting the list price as 0 for inventory records.
  2. Enhancement
    1. Code comments added to improve the readability.

ZOHO CRM/PHP SDK 1.1.6

Install command
  1. composer require zohocrm/php-sdk:1.1.6
Notes
  1. Issue fix: Warning triggered from getTags() method fixed.

ZOHO CRM/PHP SDK 1.1.5

Install command
  1. composer require zohocrm/php-sdk:1.1.5
Notes
  1. Issue fix: Regarding TagAPIHandler.php file import in Linux system.

ZOHO CRM/PHP SDK 1.1.4

Install command
  1. composer require zohocrm/php-sdk:1.1.4
Notes
  1. Issue fix: Regarding count() in php 7.2

ZOHO CRM/PHP SDK 1.1.3

Install command
  1. composer require zohocrm/php-sdk:1.1.3
Notes
  1. Enhancement: Support given to Tags.

ZOHO CRM/PHP SDK 1.1.2

Install command
  1. composer require zohocrm/php-sdk:1.1.2
Notes
  1. Issue fix: Field value for $approved is not getting set in records create.

ZOHO CRM/PHP SDK 1.1.1

Install command
  1. composer require zohocrm/php-sdk:1.1.1
Notes
  1. Issue fix: In working with configuration map for configurations.

ZOHO CRM/PHP SDK 1.1.0

Install command
  1. composer require zohocrm/php-sdk:1.1.0
Notes
  1. Enhancement: Support given to provide SDK Configuration details as map.

ZOHO CRM/PHP SDK 1.0.4

Install command
  1. composer require zohocrm/php-sdk:1.0.4
Notes
  1. Enhancement: Support given to triggers.

ZOHO CRM/PHP SDK 1.0.3

Install command
  1. composer require zohocrm/php-sdk:1.0.3
Notes
  1. Enhancement: If-Modified-Since header support given in getRecords method.

ZOHO CRM/PHP SDK 1.0.2

Install command
  1. composer require zohocrm/php-sdk:1.0.2
Notes
  1. Issue fix: Exception in uploadAttachment method.

ZOHO CRM/PHP SDK 1.0.1

Install command
  1. composer require zohocrm/php-sdk:1.0.1
Notes
  1. Issue fix
    1. Entity id passed as float value(In some 32 bit php Version long  gets converted to float).
    2. User creation.
    3. getDisplayFieldId method removed from ZCRMModule class.
    4. Miscellaneous fixes.
  2. Enhancement
    1. Search records is now supported with criteria, phone and email.

ZOHO CRM/PHP SDK 1.0.0

Install command
  1. composer require zohocrm/php-sdk:1.0.0
Notes
  1. First Release.

ZOHO CRM/PHP SDK 0.0.1 - 0.0.3

Install command
  1. composer require zohocrm/php-sdk:0.0.3
Notes
  1. Pre-release(beta VERSION).




    • Related Articles

    • Release Notes - Python SDK

      ZCRMSDK -VERSION 1.0.8 Install command pip install zcrmsdk==1.0.8 Notes Enhancement: Duplicate check fields can be ignored if not necessary in upsert record method . ZCRMSDK -VERSION 1.0.7 Install command pip install zcrmsdk==1.0.7 Notes Enhancement: ...
    • Release Notes - C# SDK

      ZCRMSDK -VERSION 2.0.1 Install command Install-Package ZCRMSDK -Version 2.0.1 dotnet add package ZCRMSDK --version 2.0.1 Notes Enhancements: SDK is compatible with Visual Studio 2015. Configuration details have to be passed only as a dictionary. ...
    • Installation - PHP SDK

      Install Composer(if not installed) Run this command to install the composer curl -sS  https://getcomposer.org/installer  | php To install composer on mac/ linux machine: https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx To install ...
    • PHP SDK - An Overview

      PHP SDK offers a way to create client PHP applications that can be integrated with Zoho CRM. This SDK makes the access and use of necessary CRM APIs with ease. In other words, it serves as a wrapper for the REST APIs, making it easier to use the ...
    • Configuration - PHP SDK

      To access the CRM services through SDK, the client application must be first authenticated. This can be done by passing a key-value configuration pair to the initialization process. The $configuration array must be created. It will contain the ...