In 'zohoapis.com/crm/v4' a space character matters. FYI;
The delimiter for the list of fields to return is a comma ",'. However, if there is a space between the comma and the the next field name, the field name is excluded from the result set I did not test this with earlier version of the api.
Where can I find API documentation to get file attachments from custom module?
Where can I find API documentation to get file attachments from custom module?
Why can't I add an event to my calendar in Zoho Creator/Deluge?
I am trying to build a script using Deluge in Zoho Creator which will create a calendar event in Zoho Calendar when a new form is submitted or an existing form is updated. I am using the Zoho Calendar connection with the following code: response = zoho.calendar.createEvent("<calendar-uid>",
Deluge in Zoho Services #4: Zoho Sheet
Hello everyone, Greetings from Deluge! It's been a while since we connected, but now we're back in action, continuing our series of posts on Zoho services that support Deluge. We hope you found the previous post in this series useful. In today's post,
Search in Zoho Desk contacts by Boolean custom field - using deluge
Hello, I am trying to search for contacts that cf_sync is false here is the script: contacts = zoho.desk.searchRecords(orgid,"contacts",{"customField1":"cf_sync:false"},0,100); info contacts; but the output is: {"errorCode":"UNPROCESSABLE_ENTITY","message":"The
Creator + Zoho Sign
Hi All, First off, thank you for everyone's help so far. I am trying to accomplish the following in Zoho Creator: Recall Document & Remind Signer. Both of these functions are not available via deluge so I am trying to use the Zoho Sign API. I believe
How to get data from response?
In deluge I used a simple statement to get a Zoho Sign Document response resp = zoho.sign.GetDocumentByID(XXXXXXX); info resp; I get a response in this format { "code": 0, "requests": { "request_status": "completed", "notes": "", "attachments": [ ], "reminder_period":
Writer Deluge Variable
I'm building a custom function for zoho writer and am a bit stumped with the initial variable. Once I have my crm record id I'm good, but how do I define a variable for that id that triggers the custom function? Whenever I leave the id variable in my
How to transform file Content-Type from Multipart/form-data to application/pdf ?
Hi, I have a big issue with file content-type during uploading the files into Messagebird server. After successful uploaded into Messagebird server, but the file content-type always in Multipart/form data. But the requirement from Messagebird the Content-Type
How to sort result set from getRecords
Hi, I want to sort the result by the "Reporting_To". If someone could assist. ----------------------------------------------------------------------------------------------------------------------------- listVar = list(); //Create map to hold search
How can I set the task layout when creating a project with Deluge
Hi, I am automatically creating a new project in Zoho projects with Deluge. I cannot find any documentation on how to set the task layout, which needs to be set at the project level upon creation, as far as I can tell. I can see the response when the
zoho.currenttime is not working properly
Namaskaram Zoho Books team, we wrote a script to update an date fields based on current time. For that, we using the deluge default function (zoho.currenttime) in the script. It is not taking the current time of login user, literally its taking current time of the script owner (user who wrote the script) not the current login user. Crafted with ❤️ Zoho Gurus | Zoho Books Practice Team @ CubeYogi Zoho Authorised Partner | 8+ Yrs | 200+ Projects | 100+ Customers
getting UnAuthenticated Connection error when executing custom functions from employee account
Greetings i'm testing a custom connection between zoho books and expenses, i created the connection from zoho books side and enabled the "use logged in user credentials" option. the custom function uses invokeUrl to add entries to zoho expense. when i
Sort a list of key-values elements
Dear community, I have the following question. I have list called list_values: list_values = {{"name":'Carl',"age":6},{"name":'Adam',"age":8},{"name":'Bob',"age":9}}; I want to reorder the list values based on the name key of each key-value element, the
No records found
I want to track all employees who do not have records for a specific month. response = zoho.people.getRecords("Legal_Rest_Monthly_France",0,1,searchList); When the search criteria is null it returns an empty map. I understood that I could use the "isEmpty"
Error using zoho.sheet.createRecords: There was a problem while trying to integrate with DRE
In Deluge, when I try to use zoho.sheet.createRecords to add to more than 1000 rows, I get this error: There was a problem while trying to integrate with DRE Only some of the data is added to the sheet. The number of rows added varies each time, but it
JSON Parse Issue
I am trying to parse response like so info response.get('data').get('Store'); and get the following error: Failed to execute function Argument type mismatch - Found 'DATE-TIME' but Expected '[BIGINT]' for the function 'get' Line Number:16 however, info
Upload workdrive file to sharepoint
Hello, I'm trying to upload a specific file from workdrive to Microsoft Sharepoint when a workflow is triggered. I've tried using flow to accomplish this but it can only upload .txt files (The file I need is a .docx). Any ideas would be great. Thank
Need Help Converting CURL to Deluge
Hi, I am having an issue with converting a CURL command into Deluge. The CURL Command is formatted as follows (token is a bogus string): curl https://{subdomain}.zendesk.com/api/v2/users.json \ -H "Authorization: Bearer 52d7ef4ee01e2c2c75bff572f957cd4f12d6225eee07ea2f01d01a"
Deluge - convert datetime from api response to local time zone
Hello, I use the following testing code: I would like to know why the result is "21-Jun-2016 04:16:14"... Why is the hour = 04? The result I expected would be = 18:16:14 (UTC +2) ------------------------------ Where do I actually get this string: "2016-06-21T13:16:14.000Z"
Apparent time-out of Deluge code
See video explanation here: https://workdrive.zohoexternal.com/external/e9a38e2c5bacfdfd9f23fcdb899b1e2cbebfa1431f43b95653afae31a415b0d1
How to process a PDF to the Writer API?
Hello :) Does anyone have experience in processing an invoked PDF to the Zoho Writer API? In Deluge I requested a PDF estimate from Zoho Books downloadedEstimate = invokeurl [ url :"https://books.zoho.eu/api/v3/estimates/pdf?organization_id={ORG-ID}&estimate_ids={ESTIMATE-ID}"
My Love / Hate relationship with Deluge
Ok... so I should first say that I very much have an appreciation for all of the awesome things that I can do with Deluge. It really can be quite powerful in a variety of ways, and allows for all kinds of customization that otherwise would not be possible. Admittedly however, I've had days (and sometimes late nights that turn into early mornings) that I end up feeling like my head is going to explode when coding in Deluge. Now let me emphasize something here... Deluge is a terrific language...
Auto-sync email attachments to tickets - Problem with ANSI encoding
Hello, I discovered the following Zoho tutorial: https://help.zoho.com/portal/en/community/topic/automation-3-auto-sync-email-attachments-to-tickets I have created a function based on the post, which also works BUT there is a problem with the text encoding
How to correctly use workdrive integration to upload file from file_upload field?
I have no idea if this is supposed to go into WorkDrive or Creator forums or Deluge but I'm hoping someone can help me out either way. So according to the information on the workdrive integration with creator to upload file (https://www.zoho.com/deluge/help/workdrive/upload-file.html)
How do I create a subfolder in a team folder using deluge?
Hello--working on an app in creator creating a database of different records associated with different organizations. I would like to create a folder for each organization within a team folder I've created specifically for this app, then make another
Assigning Teams to Projects from CRM Function Challenge
We have a function in our CRM that creates a Zoho Project (from a Project Template) when a particular field is updated. I'd like to try and assign teams to the project at that time but I can't seem to make it work. Is this possible and if so can someone
Get Related CONTACTS Id of a list of Accounts
Hi There, I am trying to get just the id's of a related contacts from a list of accounts, I can get it to output the full Json info , but i need just the Id's. I keep getting the following error: Failed to execute function Argument type mismatch - Found
Custom function for Inventory
Hello, Anyone know how i can create a custom function inside Z Inventory in order to delete both the package and shipment (Mark as undelivered) ? A lot of the time we get customers ordering and picking up products straight away, before they even leave
EMAIL TEMPLATES | DELUGE
Good day Zoho Team, I am trying to create a custom function on sending email notification with different conditions, Is it possible to insert the created custom email template to my custom function? The email template contains content with several placeholders.
Retrieving Invoices via zoho.crm.getRecordById failing in a deluge function?
Hi, While updating a deluge function in CRM (that creates a corresponding invoice in Books), to use OAuth, it looks like I'm getting { "status": "failure" } at the very start of the function (even the old, working code no longer appears to work). The
Easiest code to convert date format from Books to CRM
There's got to be a better way....? Books - 06 Sep 2022 CRM - 2022-08-27 day = estimated_ship_date.left(2); year = estimated_ship_date.right(4); month = estimated_ship_date.subText(3,6).lower(); info month; // 06 Sep 2022 // 2022-08-27 if(month == "sep")
getRelatedRecords not working while getRecords is working
So i have the following code that gets all the records ( at least the first 200 ) of my custom module: notificationLines = zoho.crm.getRecords("Notification_Lines", 1, 200 ); for each notificationLine in notificationLines{ //info notificationLine;
Deluge and Javascript/Node.JS code examples (and others?) should be added to the API docs instead of just CURL
Hello. While I realize that it's not rocket science to convert from CURL, it would undoubtedly save a lot of time if the code examples for Zoho's own app API documentation also included examples for both Deluge (which I'm kinda surprised isn't there,)
Deluge should permit a connection to be set with a variable
Hello, Being one who occasionally likes to post code in the forums, I try to make anything that the end user needs to define be present at the very top of the script so that those who want to implement the script won't have to hunt through lines of code,
How can I update the value inside a custom function from another custom function?
Hello there, I have two custom functions right now, one of them has a variable called 'token' inside of it, and then I have another function (custom function) that I want to use to update the 'token' variable I have in custom function 1, is this possible
Possibility to convert non-ascii characters to ascii in Deluge
Hi! I am making a function that automatically creates emails for participants in a project. I am currently trying to convert all non-ascii characters that might be in a users full name to ascii characters. I can't seem to find a built-in function to do
How can I get the payable days from attendance form using deluge what is the label name of form and field?
response = zoho.people.getRecords(form name); what is the query?
How to trap and handle "Failed to execute function Value is empty and 'get' function cannot be applied Line Number:30"
How does one trap, and then handle, this error? Failed to execute function Value is empty and 'get' function cannot be applied Line Number:30
Retrieving dropdown values in a tabular section
Hi, I would like to retrieve all the values from a dropdown list for a field in a tabular section from the employee form in a deluge script. Any help would be appreciated. Thanks
Next Page