New SDKs Released!
We have released new versions of our SDKs, now supporting the latest version of our APIs. Explore them here.
Using the Java SDK through Maven
Follow the below steps to use the Java SDK for Zoho CRM through Maven.
- Create a Maven project.
Place the below code in your pom.xml file of your Maven project.
<repositories> <repository> <id>zohocrmsdk-2-0</id> <url>https://maven.zohodl.com</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.zoho.crm</groupId> <artifactId>zohocrmsdk-2-0</artifactId> <version>3.0.0</version> </dependency> </dependencies>
The below image shows how your pom.xml should look like.
- Update the maven project.
Under project explorer, right click the project name, select Maven > update project. The jar will be downloaded in the maven dependencies. - Inside your source code, import the appropriate files from the SDK.
- Generate the grant token when you initialize your application.
- You can now access the functionalities of the SDK. Refer to sample codes to make various API calls through the SDK.