Kaizen #15 - Java SDK for Self Client
Hello everyone! Welcome to yet another post in the Kaizen series. This week, we are going to discuss the Java SDK for a self client . What is a Software Development Kit (SDK)? A software development kit contains all the tools (compiler, debugger, code samples, and so on) that are needed to create applications in one package. SDKs are language-specific and thus used to build client applications in a specific programming language. Java Software Development Kit Java SDK allows you to create
Kaizen #38 - Calls #API
Hello everyone! Welcome back to another post in the Kaizen series! This week, we will discuss adding, updating, and deleting Calls via an API. What are Calls in Zoho CRM? The Log a Call functionality helps you to register the inbound calls (received from leads and customers) and outbound calls (dialed to leads and customers) with call details such as call duration, date and time of calls, notes, etc. Users who frequently make calls or receive calls in an organization can use this functionality in
Kaizen #28 - Use cases related to Record Owner
Hello everyone! Welcome back to another week of Kaizen! In this post, we will discuss a few use cases related to the Record Owner field. Who is a record owner? A record owner is a user of a CRM org who owns a record in a module. Any other user could have also created or owned this record, previously. This "owner" is a lookup field that points to the resource Users. Therefore, when you use this field, it must always be a JSON object in your input. The following are a few use cases related to the record
Kaizen #23 - Widgets
Hello Everyone! Welcome to another week of Kaizen! In this post, we are going to discuss Widgets in detail. First things first—What are Widgets? Widgets are embeddable UI components that you can create and add to your Zoho CRM. You can use widgets to perform functions that utilize data from third-party applications. You can build widgets for Zoho CRM using our JS SDK. For instance, You want your sales representatives to handle new requirements/customization requested by prospects by raising internal
Kaizen #18 - Ruby SDK
Hello everyone! Welcome back to another week of Kaizen! This week, we will discuss the Ruby SDK. What is the Ruby SDK for Zoho CRM? Ruby SDK allows you to create client Ruby applications that you can integrate with Zoho CRM, effortlessly. It serves as a wrapper for the REST APIs, thus making it easier to use the services of Zoho CRM. Here is a sample of how the SDK acts as a middle ware between Zoho CRM and a client Ruby Application. What can you do with the Ruby SDK? Exchange data between Zoho CRM
Kaizen #16 - Python SDK
Hello everyone! Welcome back to another week of Kaizen! This week, we will discuss the Python SDK. What is the Python SDK for Zoho CRM? Python SDK allows you to create client Python applications that you can integrate with Zoho CRM, effortlessly. It serves as a wrapper for the REST APIs, thus making it easier to use the services of Zoho CRM. Here is a sample of how the SDK acts as a middle ware between Zoho CRM and a client Python Application. What can you do with the Python SDK? Exchange data between
Kaizen #10 - Search Records API and Query API
Hello everyone! Welcome back to this week's Kaizen post! In this post, we will discuss the Query API and the Search Records API, and when you should use them. Query API The Query API allows you to query the records using the CRM Object Query Language(COQL). COQL is based on the SQL syntax and uses the SELECT statement in the query to fetch records. When should you use the Query API? When you want to use DB comparators such as =, >, <, >=, <=, is null, is not null, between, not in, like, and not like