Import SDK in your Project

Import SDK in your Project

To import the SDK in your project, use the following statement.
  1. import zcrmsdk
To import the SDK and rename it with a custom name, use the following statement.
  1. import zcrmsdk as your_custom_name
You must use this SDK name while referencing any class in the SDK.
A few examples:

To initialize the configuration properties file, use
  1. zcrmsdk.ZCRMRestClient.initialize(config)
To get the instance of the Contacts module, use
  1. module_ins = crmsdk.ZCRMModule.get_instance('Contacts') # crmsdk is the custom name


    • Related Articles

    • Configuration - Android SDK

      Create a New Project Once your client has been registered, you could start with creating your own Android application. In your command line, move to the directory where you want to create your mobile project and execute the following command. ...
    • Import

      How to import work items? Click  in the upper-right corner. Select Import. You can download sample files at the bottom of this article. Zoho Sprints only supports XLS, CSV, XLSX, and JSON files. There are four mandatory fields to fill in before you ...
    • Release Notes - PHP SDK

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

      Zoho Projects provides an option to import users and accounts from Zoho CRM. From Zoho CRM, you can now import your project and client users to your Projects portal. This feature is not available for Zoho CRM Plus and Zoho One users. Login to Zoho ...
    • Java SDK - Overview

      Java SDK offers a way to create client java 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 ...