Invalid Ticket Id
Hi, I'm a new Zoho developer trying to call the CRM API. I've followed your example by getting leads but I got "Invalid Ticket Id" exception. I have followed these steps Firstly, copy authtoken from active token pages like this: Code: public static void Main(string[] args) { string result = APIMethod("Leads", "getRecords", string.Empty);//Change the id,method name, and module name here Console.Write(result); Console.Read(); } public static
Event Contacts
Hello Is there a way to get a list of contacts that are attending/did attend an Event using the API or a Custom Function? Thank you Jeff
Any way to connect Zoho to Mailchimp using Zapier (or CloudWork) despite API limit?
Hi! I'm really desperate with Zoho right now... I've tried using both Cloudwork and Zapier to connect Zoho to Mailchimp, but both just plain and simply break Zoho (how can it be so low?) API limit of 250 calls. So, basically, besides Zoho, all the Apps we use are working together without any problem (Newsletter, Chat, Analytics, etc.) Only Zoho falls short to meet our expectations because we can't even get it to integrate properly with our Newsletter. (And I didn't even try to integrate it with our
Filter and Pagination Properties
Hi Team, Is there any API calls or any other methods are available to achieve the filter and pagination property on the Zoho objects??? In Zoho API Developer Guide i couldn't find any API calls to achieve this.Please let me know if anything is available.
zoho account Active authotoken session
Hi If you go to account/sessions/active autotokens shows the authotoken id and the ip address and last time accesed. If you select that authotoken, and click on View more details a window open and shows Scope (Scope) IP AddressDescription Generated Time, Last Accessed Time, Last Accessed IPAddress and Last Accessed UserAgent On the last access ip shows most of the time the server that host my website. However other times show an private ip which i dont know who it is. Why does it show as
Zoho CRM API using by PHP
Thank you for the great products as Zoho CRM. I have a question about Zoho CRM API I have received the sample code of using API in terms of PHP. /*sample code*/ header("Content-type: application/xml"); $token="MYTOKEN"; $url = "https://crm.zoho.com/crm/private/xml/Leads/getRecords"; $param= "authtoken=".$token."&scope=crmapi"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT,
Upload file using vb.net to Zoho CRM Case
Hello, I have tried different approaches with little success. Can you please provide a working sample to upload a file and attach it to a case using vb.net code? Thanks!
zoho.crm.searchrecord
Hi All, I have to perform a function for assign leads using the LIFO concept . I am using the crm.searchrecord method to obtain the unasiggned Leads . Order By clause , can I use it with the crm.searchrecord method ? How do I get more than 200 records using crm.searchrecord ? If I have 500 records, wich 200 records returns? Thank & Regards Alejandro
Disabling HTTP Response headers broke the JQuery UI DatePicker
We created outbound rules to disable the HTTP Response headers (Response_Server and X-powered by .NET) however it broke the integration of our application, JQuery UI DatePicker broke. Anyone heard of something like this before.
Getting a custom field to appear in the query results
Hi, We have a custom field that is populated when a person is put in as a lead and is then approved to become a contact. to show this person on a web page, I'm using the api to pull out their details based on their email address $url = "https://crm.zoho.com/crm/private/xml/Contacts/getSearchRecordsByPDC"; $param = "authtoken=".$token."&scope=crmapi&selectColumns=Contacts(Contact Owner,Lead Source,First Name,Last Name,Account Name)&searchColumn=email&searchValue=".$email."&version=2"; How do i add
Pushing contacts into office 365
Hello I am trying to figure out a way to take contacts as they come into zoho or are entered and push them into office 365 company contacts and then add them to distribution groups. Has anyone tried to accomplish this?
How to split/parse json response from zoho crm api using asp
Hi, I am getting below json response from zoho CRM API. But i need your help to split individual variables like content, val from this response. // JavaScript Document { "response": { "result": { "SalesOrders": { "row": { "no":"1", "FL": [ { "content":"38660000015546081", "val":"SALESORDERID" }, { "content":"38660000015546083", "val":"SO Number" }, { "content":"Product Name", "val":"Subject" }, { "content":"2016-01-11", "val":"Due Date" }, { "content":"Delivered", "val":"Status" } ] } } }, "uri":"/crm/private/json/SalesOrders/searchRecords"
[SOLVED] insertRecords unable to populate data
Hi everyone, I'm using the following XML to insert a record in CustomModule7: <CustomModule7> <row no="1"> <FL val="CustomModule7 Name"> <![CDATA[Police GOC]]> </FL> <FL val="Body"> <![CDATA[Merci de réduire la police dans GOC [image: Images intégrées 1] Je reste à votre disposition si vous avez besoin d'informations supplémentaires. Bien cordialement, VivaSoft - Christian Pompier Intégrateur Google Apps & Zoho CRM Direction Générale
Question about APIs getSearchRecords and searchRecords Methods
We still use old getSearchRecords Method because searchRecords Method couldn't search partly value of the field: (field_name|contains|*sometext*) It was so few month ago... Can searchRecords - find fields by (field_name|contains|*sometext*) criteria?
Problems Pushing Data from CRM to Creator
1) My Zoho Creator app creates records in CRM and vice-a-versa. Creator uses zoho.crm.create() to add a record to CRM CRM uses a rule triggered by an edit with a web hook using a REST API call to add a record to Creator. 2) I'm trying to keep certain fields synchronized between CRM & Creator. 3) Updating records in CRM triggered by edits in Creator is no problem with zoho.crm.updateRecord() 4) Updating records in Creator triggered by edits in CRM is not working. I'm trying to do the data push from
How to add the custom field to the API response?
Hi, I have created a custom field for Accounts. I want that in the API result. How do I add it?
insertRecord with custom module
Hello, Until around December 18th (as far as I can tell), I was able to insert records through the API into my custom module by using the following URI: https://crm.zoho.com/crm/private/xml/CustomModule2/insertRecords?authtoken=[my auth token]&scope=crmapi&xmlData= and data for the xmlData parameter that looked like this: <CustomModule2> <row no="1"> <FL val="Support and Maintenance Name">Pocketracker 3.0 Annual Fee Per License (1st License)</FL> <FL val="Service Type">Support
CRM API to access related records like 'Stage History' 'Competitors' 'Quotes' etc...
Hi, Does anyone know how to retrieve related records like 'Stage History' 'Competitors' 'Quotes' from Potentials via API calls such as the getRelatedRecords call? Regards, Liam
Help needed please
Hi. Can anyone tell me why this script isn't working please? I'm trying to insert a record into the Leads module from a PHP script. Curl is set up and working on my website. <?php $token="{ MY TOKEN GOES HERE }"; $url = "https://crm.zoho.com/crm/private/xml/Leads/insertRecords?"; $param= "authtoken=".$token."&scope=crmapi"; $ch = curl_init(); curl_setopt($ch, CURLOPT_VERBOSE, 1);//standard i/o streams curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);// Turn off the server and peer verification curl_setopt($ch,
HOw to format vendor record to insert it?
Hi I need to know how do you format vendor record to send it to the api endpoint and inserte. Most there is an imcomplete example in your api documentation and folliwing that I could make this: <Vendors> <row no="1"> <FL val="Vendor Name">Scott</FL> <FL val="Phone">James</FL> <FL val="E-mail">test2@test.com</FL> <FL val="Category">CG</FL> <FL val="Vendor Address"></FL> </row> </Vendors> However to insert the address I see the fields look different: Vendor Address Street City State Postal Code Country
how to start for order management?
Hi, i want to keep track of all orders which are being placed on my website, but i m not getting how can i start, could any one tell how can i use Zoho for orer management? Thanks in Advance
Drupal Webform Integration using Zoho CRM API, Append to Select Records, not Overwrite Records
Greetings, We are using Drupal 7 webform submissions to create Zoho CRM Leads using the Zoho API (see attached). When a webform is submitted a new CRM Lead is successfully created. Since many visitors submit many webform submission, to avoid duplicate Lead submission in Zoho we check the form submissions emails and if exists we update the existing Lead. The below list shows the form fields: First Name: Last Name: Website: Company: Phone: Email: Country: State: Form Name: Currently when a form
Full Time Help Wanted Zoho Admin Old Bridge NJ USA
Please click for our job posting
How to push crm id variable
hi, Please advise (api ressources or else) on how to push a variable Id from zoho crm to a website session upon authentication of the user (logged in). The case here is for a wordpress website. Tks
Creating a Purchase Order with multiple line items using the Zoho API (via XML)
I am trying to create a purchase order in Zoho using a call to the Zoho API and am getting an error, even though I'm passing all required fields and matching the format to what I get when I export a similar PO. I'm trying to create a new purchase order using this URL: https://crm.zoho.com/crm/private/xml/PurchaseOrders/insertRecords? This is followed with the following post content: scope=crmapi&authtoken=xxxxxxxxxx&newFormat=1&xmlData=<PurchaseOrders><row no="1"><FL val="Subject"><![CDATA[PO for
Zoho CRM API - Insert/get Product record
Is there a insert/get record method available for product record. I could not see anything in the API guide. We need this as our customer wants to create a new product via their website and then be able to create a sale for the new product to a CRM account. I am guessing to do this we will need to insert a product record then get the product id generated for that record to link to a sales order - is this correct? Thanks in advance Penny
Invalid Ticket Id
I'm a new Zoho developer trying to call the CRM API. I've followed your example by substituting Contacts instead of Leads (which we don't use yet) and adjusting the column names. My code in java is below. I've found some other tickets like this, and I have tried: - generating a new Zoho Service Communication (ZSC) Key - copying the token from https://accounts.zoho.com/u/h#sessions/userauthtoken (which does not match the ZSC) But no matter what token I try I get the same error: 4834 "Invalid Ticket
DRUPAL integration
Hello, Our (external) webmaster says he cannot integrate our website data into ZOHO CRM. We have a Drupal based website www.waxoyl-france.com from which our customers input data. I find it hard to believe that this info cannot be automated back to a Zoho CRM, especially when the data is simply 10 text and/or number fields Thank you for any feedback or experience in this matter. Lars
"desemepnho" should be "desempenho" at https://crm.zoho.com/crm/ShowSetup.do?tab=addons&subTab=zohoApps
Dear Zoho partners small mistake: "desemepnho" should be "desempenho" at https://crm.zoho.com/crm/ShowSetup.do?tab=addons&subTab=zohoApps (Portuguese Version) Thank you for this WONDERFUL tool!!! Kind regards, Paulo Mendonça www.centrosapienti.com
Custom fields are not inserted/updated
My request is as below https://crm.zoho.com/crm/private/xml/Accounts/insertRecords?authtoken=****&scope=crmapi&xmlData= <?xml version="1.0"?> <Accounts> <row no="1"> <FL val="Account Name">ACD</FL> <FL val="Currency Used">USD</FL> <FL val="Area Code">103</FL> </row> </Accounts> custom fields 'Currency Used '& 'Area Code' aren't inserted. I tried updating an existing contact, all the fields other than the custom ones are updated.
Invalid Ticket Id
Hello , I have problems extracting information through a development, which previously did not give me problems , and change the administrator password and generate a new token , here I show the information that displays me. code:4834, message: Invalid Ticket Id
Associate notes to Lead using ZOHO CRM api
Hello, I have to associate Notes to Lead using ZOHO API. Can anyone help me to implement this? I can see ContactId in task xml but there is no LeadId. Regards, Saurabh
getModules API Call does not return usable modules, and also returns unusable modules
I would like to reiterate the following post - https://help.zoho.com/portal/en/community/topic/crm-api-getmodules-feature-request The getModules API call returns several modules that are not usable in integrations (such as Activities and Emails), however it does not returns modules that ARE usable such as Tasks. Is it possible for this to be addressed? Sorry for the repeat post but I saw the previous post was never replied to. Thanks for any guidance.
CRM API GetModules feature request
Hi, Here is a little feature request for the GetModules API call, which to me is inconsistent. At the moment, the call returns the "Activities" module, which nothing can be done with, but doesn't return the 3 underlying modules (Tasks, Events, Calls), which we can do something with. So if I want to present users the list of modules they can create field mapping with our application, for example, I'm forced to remove Activities from the list and to hardcode the 3 other modules in the list. The API
Supported Modules for Notes
Is there a list of modules which support Notes? I am working on an integration with the Zoho CRM API and would like to know where to focus my efforts.
Making
Dear how i can insert in any email template a user name and password that comes form other source like the META TRADER i have a meta trader and there is a plugin that gives directly a user name and password for DEMO Account USING Certain plugin. so when the client apply for our website : www.cfimarkets.com/landing a welcome email form zoho comes here how we can give him a user name and password within this template and those credentials comes from mt 4 i have attached what should be done so
Move attachment to other record using API
How can I move attachment to other record using API? I tried call Attachments/updateRecords and set new "SEID" I got Unable to process your request. Please verify whether you have entered proper method name,parameter and parameter values. downloadFile + uploadFile wont work too (as I can download only 15 files in 5 minutes )
Can I add Products to Potentials via xml?
We are in the process of designing scripts to load our existing data into ZOHO. I have successfully built Potentials and Products via the CRM API. Now the issue is can I add Products to Potentials? It looks like updateRelatedRecords is the closest method I can find. In order for us to use this system, I will have to add several thousand Potentials each will require between 1 and 4 Products so I want to add via the API and not manually.
How to find whether a crm user has crm api access or not?
Zoho CRM documentation says user api access status can be found under crm -> setup -> users & permissions tab, but unfortunately I cannot find anything there.
About using the AuthToken
I want to retrieve the Accounts, Leads from my ZOHO CRM. I generated the token in my fds laptop few days ago and noted down the token as it is supposed to be permanent. Then I logout and clean cookies. When I use the token in my own computer, it keeps prompting me "No data found" code "4422". I guess it should be something related to the session because I generate the token in other computer? Is there any other solutions apart from regenerate a new token? Thanks
Next Page