Kaizen#75 - Frequently Asked Questions on Client Script
Welcome to another week of Kaizen! In this post, let us discuss some of the frequently asked questions in Client Script. 1. Where can you see the list of ZDKs supported by Client Script? The Zoho Development Kit (ZDK) library comprises a rich set of Client
Kaizen #132 - Manipulating Subforms from third-party Application using Functions
Hey folks! Welcome to a fresh week of Kaizen. In this post, we will see how to work with subforms and external fields in a module through CRM functions. Consider a scenario where a High School utilizes Zoho CRM to manage student records, academic performance,
No COQL query for emails
I was searching for an api call, COQL queries to fetch emails from a specific module and id. I want to fetch the emails after a certain datetime (eg: 2nd February, 2024), but unable to find any such queries. Please add any solution if any.
Client Script actions on related list change
Hey all! We have our calls automatically logging into our deals module through some custom functions. Looks like by default, the calls are related to the contact and not the deal. We have made some workflow rules and functions to have the calls automatically
Pagination in CRM related records in Deluge
In Deluge, what would be the best way to iterate over a set / list with more than 200 records? there is only a simple example on the docs page: <response> = zoho.crm.getRelatedRecords(<relation_name>, <parent_module_name>, <record_id>, <page>, <per_page>,
Kaizen #39 - Deals #API
Hello everyone! Welcome back to another post in the Kaizen series! This week, we will discuss retrieving, adding, updating, and deleting Deals via API. Deals in Zoho CRM A Deal is a revenue opportunity that is associated with a Contact or Account. OAuth Scope The scope to access the Deals module via API is: ZohoCRM.modules.deals.{operation_type} The operation type can be ALL, READ, WRITE, CREATE, or DELETE based on the operation you are trying to perform. Click here to know more about scopes. Retrieving
Bad request 404 / ZDK.Apps.CRM.Functions.execute
Hello team, I have a question, I have created a function to be able to copy information from one field to another. This is invoked as client script, in: Page Details Category: module Page: Detail Page(Standard) Module: Leads Layout: Standard event details
Replace special character in webhook xml body
I have defined a webhook in ZohoCrm .I have defined my webhook body like this <data> <id>${Sales Orders.Sales Order Id}</id> <SO_Number>${Sales Orders.SO Number}</SO_Number> <SO_Owner>${Sales Orders.Sales Order Owner}</SO_Owner> <SO_Subject>${Sales Orders.Subject}</SO_Subject>
authorize response "Cookie is disabled in your browser"
hi , i'm trying to use your api v2 to insert contact in zoho crm using your api requests now at my first step to authorize my app with zoho client , so i had sent HTTP request to the following : https://accounts.zoho.com/oauth/v2/auth?scope=ZohoCRM.modules.contacts.ALL&client_id=xxxxxxx&response_type=code&access_type=offline&redirect_uri=http://www.xyz.com/oauth2callback"); i'm getting an html in response mentions : Cookie is disabled in your browser. Please enable the cookie to continue. although
Custom Module missing SDK function fetchRelatedRecords(...) in a Client Script
Good day, We have added a new module with a Multi-Lookup relation to Contacts. When we tried to use the fetchRelatedRecords(id, related_list_api_name) function to get Related Records it is missing for our new custom module. https://js.zohocdn.com/crm/5124797/documentation/DotSDK/Modules.html
CRM API: NO_PERMISSION Error for some modules in developer environment
Hi, I have an access-token with the following scopes: ZohoCRM.org.ALL ZohoCRM.modules.ALL ZohoCRM.settings.ALL with this I can get a response for the deals (/crm/v6/Deals) but for other modules like Quotes, Products, Pricebooks I get an NO_PERMISSION
COQL Query in Events with What_Id and Join
I'm trying to return fields in a lead related to an Event in Zoho CRM. Looking a the documentation https://www.zoho.com/crm/developer/docs/api/v3/Get-Records-through-COQL-Query.html it says the format sample is { "select_query": "select 'What_Id->!Leads.Last_Name'
Kaizen #71 - Client Script ZDKs for Detail (Canvas) Page
Hello everyone! Welcome back to another interesting Kaizen post. In this post, we can discuss Client Script ZDKs support for Detail (Canvas) Page. What is Detail (Canvas) Page? A Detail(Canvas) Page allows you to customize the record detail page to your
CRM User field API peculiarities
There is a newly created Multi user field `Usersss` in the Leads module (`sss` is an exaggerated typo): Now I fix the name to `Users`: And also fix the API name in Setup > Developer Hub: But the API name stays the same (i. e. in Postman): This vaguely
Subform loop not listing all records
Hi, We have a script that should transfer subform records from one module to another subform in another module, but it is only pulling the last record and looping it in the other module. Please see script below and advise on how we can modify it to pull
No Refresh Token created when generating Access Token
The issue is the same as discussed in https://help.zoho.com/portal/en/community/topic/missing-refresh-token-in-respose - no matter what parameter I send, the refresh token is always missing. I have tried all combinations of access_type=offline and prompt=consent,
CRM Custom Deluge Function "Composition"
I have an custom function `foo` in CRM automation, let's say it's attached to a workflow rule `X` in module Deals. Now I also have another workflow rule `Y` calling another custom function `bar`. Is it possible to call function `foo` inside `bar` at all?
Unable to rename linking module API name once created
Moderation Update : We are yet to support rename for linking module API name, and it would be best to continue the discussion in the below forum post as this will help us track the feature request and keep you all posted with an update being made accordingly.
Kaizen #130 - Zoho CRM Scala SDK (V6) - Configuration and Initialization
Hello and welcome to another Kaizen week! In this week's post, we'll show you how to get started with Zoho CRM's Scala SDK, and walk you through the configuration and initialization process. Specifically, we will discuss how to use the Scala SDK to make
Zoho CRM Developer Series: Zoho CRM APIs
Master Zoho CRM APIs like a pro! In collaboration with Zoho Developer Community, we are introducing Zoho CRM APIs to help you unlock the full potential of Zoho CRM APIs, regardless of your experience level. Register now to supercharge your CRM skills
Invalid Module in Zoho Flow Function
Hi, I am having a weird error when trying to create records in a module using Zoho Flow. I am getting a JSON from a webhook and using that data to create records in my "Tickets" module with the API Name "Tickets createResp = zoho.crm.createRecord("Custom_Module_Tickets",ticketRecord);
Date Time field not reading api input correctly
I've run into a strange issue which probably has a simple solution. When I am inserting a record, I have a field that maps to a date time field. When I look at the xml before it is sent it has a value of 08/22/2015 11:59 AM. The insert processes fine
How to cronJob for async between Zoho and my ERP.
I am going to implement the async. And I wanna get access_token without user interaction, so I can set cronJob. If you have any experience and idea, please help me. Thank you.
API: How to use the Record_Image field
Hey, I'm looking to download the image from a specific record. I know I can use the api as follows: https://www.zohoapis.com/crm/v2/{module_api_name}/{record_id}/photo But I want to avoid making two calls to the CRM API. I know the record comes with a
Client Script | Update #5 - Supporting Dynamic Lookup Filters, Flyouts, Widgets, List & Detail Page (Standard) and much more!
Hello everyone! We are immensely delighted to introduce the most-anticipated and enchanting features on Client Script to empower you to fulfill sophisticated functionalities in Zoho CRM, thereby providing a rich experience to your users. Let us walk through
What are your best practices for using client scripting?
I'm beginning to leverage client script, and getting myself a little confounded with dealing with scripts for both in-line edit and full edit mode. Though my users like in-line edit, I can migrate us to full-page edit IF that is the more versatile mode
How can I show an Account's total lifetime purchase value?
Hello, I know I am missing something. I want to visualize how much each account has paid us over the time they have been customers (lifetime value). This must have been done before but I can't find a community thread on it. We do not bill with Zoho Finance/Books,
What is the client script syntax to call a CRM standalone function?
What is the client script syntax to call a CRM standalone function? Tried this. Can't make it work. https://static.zohocdn.com/crm/7981591/documentation/DotSDK/Functions.html
Bug in Python SDK
there is a code change required in a python environment class: class INDataCenter(DataCenter):
"""
This class represents the properties of Zoho CRM in IN Domain.
"""
@classmethod
def PRODUCTION(cls):
"""
This method
{"error":"invalid_client"}
Im sending POST query to https://accounts.zoho.com/oauth/v2/token like this described in https://www.zoho.com/crm/help/api/v2/#generate-access article, but got error {"error":"invalid_client"}. Im first thinking that this my mistake, but after this I
"Zoho CRM API Access" permission
Hi everyone! I understand that the "Zoho CRM API Access" user permission allows a user to be used for API calls, but does this imply that - using the API - the user can gain access to every module? Or is it limited only to enabled modules? I think I know
Work around for Parent/Child Field Limitations
We are an automotive wholesaler which means we deal with a lot of vehicles. One way to prevent typing errors for vehicle Makes and Models when creating a record is we created Parent and Child fields for Makes and Models. So, if a user selects a Make,
Building integration to support multiple zoho clients
Hi, We have our custom webapp which we need to integrate with Zoho via API as some of our clients are using Zoho, so we have to build a integration with Zoho to pull some data from clients zoho crm. I tried zoho php sdk and it works but I am getting errors
Kaizen #79 - OAuth2.0 - A Recap and FAQs
Hello everyone! Welcome to another week of Kaizen! Today, we will address a few frequently-asked questions about OAuth2.0 that include token generation, scopes, errors etc,. If you have any other questions, let us know in the comment section. We will
Custom Richtext is not updated through rest API
Hi I have a rest API client that I can update all fields of a lead, except a custom richtext field which is not updated. The funny part is that it returns success but the record is not updated. I have also double checked the API name and it exactly matches
Kaizen #120 - A Guide to API Calls in Zoho CRM Sandboxes
Hello everyone! Welcome back to another post in our Kaizen series. This week, we will discuss in detail about the sandbox environment in Zoho CRM, and how to make API calls to the sandbox orgs. Environments in Zoho CRM Zoho CRM empowers your business
zohocrm-csharp-sdk-2 - Only works through proxy server?
The configuration of the sdk asks for : * Create an instance of RequestProxy class that takes the following parameters * Host -> Host * Port -> Port Number * User -> User Name * Password -> Password * UserDomain -> User Domain */ Are users
How to generate grant token without using developer console
I'm integrating Zoho CRM with another app. I need to be able to use REST calls without ANY HUMAN INTERVENTION. I need a programmatic way to generate a grant token. Using the developer console will not work! This question has been asked several times before
How to fetch custom Related-list records from ZOHO CRM using ZOHO-API?
Hi, i am working on Zoho CRM and using Zoho API to fetch records from zoho crm. I want to fetch custom related-list records by using zoho-api but I am not able to do this. The scenario is : I have University as Related list in Contacts module and University is a custom module in which I have a lookup field of Contacts. Now all University records related to particular Contacts are shown its record as University Related-List. I want to get this data by using zoho-api. Help me to solve this problem.
Self-client INVALID_TOKEN error
Hi, I am looking to use the v2.0 API to allow users in our system to submit tickets in Zoho. We would like to set it up as a self-client as we prefer to set it up to provide a known access token from our back end service that will submit all requests.
Next Page