Releases: zoho/zcrm-php-sdk
Undefined index: api_name Notice fixed in Fields GET method
There is an "Undefined index: api_name" Notice being triggered when getAllFields function invoked on CustomModule5006. It's fixed now
Variables and Variable group API support provided in SDK
2.0.3 changes made to API constants and get instance method is now static f…
Variables and Variable group API support provided in SDK
Variables and Variable group API support provided in SDK
Tag names can have spaces
Tag names can have spaces while associating with records.
In Records fetching functions, tag information can be retrieved as ZCRMTag instance.
PSR-4 standards followed
PSR-4 standards followed
Line tax support provided for Inventory modules.
Line item can now be added, updated or deleted. (This costs 2 API Credits)
Org tax API supported.
Trigger support given for specific(single) create and update operations.
Lead Assignment rule supported.
Custom DB support provided.
Duplicate check fields support provided for upsert record.
Additional details can be added to Convert Lead operation.
Criteria pattern and condition can be extracted directly in customview API.
Multiple clients are supported.
Sample codes for all operations provided.
Lead assignment rule support given for single create and bulk create of records
In single and bulk record creation, lead assignment rule can be executed.
Ex.
$trigger=null;
$larid="430000000223";// lead assignment rule id
$bulkResponse=$moduleInstance->createRecords($recordInstanceArray,$trigger,$larid);
Unable to set list price as 0 for inventory records. It's fixed now
Now inventory line item list price can be set as 0
Ex: $lineItem->setListPrice(0);
Warning triggered from getTags() function fixed
When getTags() function called, some warnings getting raised. Now those warnings got fixed.
Issue fix regarding TagAPIHandler.php file import is not working in Linux system
In linux systems, TagApiHandler.php file import is getting failed because of case-sensitivity. Fixed that problem in this release.
Issue fix regarding count() function error in PHP version 7.2
In PHP version 7.2, count($obj) function throws error when the $obj is non countable object. It's fixed.