Skip to content

Releases: zoho/zcrm-php-sdk

Undefined index: api_name Notice fixed in Fields GET method

13 Sep 13:08
Compare
Choose a tag to compare

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

10 Sep 06:49
Compare
Choose a tag to compare
changes made to API constants and get instance method is now static f…

…or variables

Variables and Variable group API support provided in SDK

04 Sep 07:02
Compare
Choose a tag to compare

Variables and Variable group API support provided in SDK

Tag names can have spaces

30 May 13:49
Compare
Choose a tag to compare

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

30 May 10:16
Compare
Choose a tag to compare

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

17 Apr 15:19
Compare
Choose a tag to compare

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

25 Jan 13:46
Compare
Choose a tag to compare

Now inventory line item list price can be set as 0

Ex: $lineItem->setListPrice(0);

Warning triggered from getTags() function fixed

17 Dec 10:17
Compare
Choose a tag to compare

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

04 Dec 07:00
Compare
Choose a tag to compare

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

28 Nov 12:53
Compare
Choose a tag to compare

In PHP version 7.2, count($obj) function throws error when the $obj is non countable object. It's fixed.