Related Articles
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 ...
Responses & Exceptions - PHP SDK
APIResponse, BulkAPIResponse and FileAPIResponse are the wrapper objects for Zoho CRM APIs’ responses. All API calling methods would return one of these two objects. A method-seeking entity would return APIResponse object, whereas a method-seeking ...
Initialization - PHP SDK
The app would be ready to be initialized after defining the OAuth configuration file. Generating self-authorized grant and refresh token For self client apps, the self authorized grant token should be generated from the Zoho Developer Console ...
Java SDK Samples
Module APIs Get List Of Modules - List<ZCRMModule> ZCRMRestClient client = ZCRMRestClient.getInstance(); BulkAPIResponse response = client.getAllModules(); List<ZCRMModule> modules = (List<ZCRMModule>) response.getData(); Meta data APIs Module Meta ...
Class Hierarchy - PHP SDK
All Zoho CRM entities are modelled as classes having members and methods applicable to that particular entity. ZCRMRestClient is the base class of the SDK. This class has, methods to get instances of various other Zoho CRM entities. The class ...