Questions tagged [zoho-deluge]

Use for questions about Zoho Deluge.

Zoho Deluge is tool to write scripts using a propietary language that is integrated in Zoho apps like Zoho Creator, Zoho CRM among others.

Use together with .

Do not use with .

81 questions
3
votes
1 answer

How to send 'JSON' in post request using deluge?

I have a JSON data, which i need to pass it in POST method. I have no idea how to convert JSON data as query paramters. Kindly help me how to send this type of a JSON data in POST method using deluge. jsonData = { "author":…
Deepak
  • 2,660
  • 2
  • 8
  • 23
3
votes
3 answers

Zoho Deluge : How can I insert line breaks or start a new line to e-mail message?

I am trying to send an email by using Zoho Custom Function. Now, I need to insert line breaks in my email. I try by using \n but it does not work. sendmail [ from: "email@gmail.com" to: "email@gmail.com" subject: Subject …
Mahidul Islam
  • 580
  • 11
  • 29
3
votes
2 answers

How to create custom function in zoho crm?

Please help me in how to create the custom function to search records from custom module in zoho crm. I am new to zoho crm so I do not have any idea about how to code for this. The workflow triggers on Event create. In custom module LEADID is…
Ashish Patil
  • 313
  • 1
  • 6
  • 15
2
votes
1 answer

How to import a list into an email with Zoho Deluge?

I was recently tasked with learning the Zoho scripting language Deluge for a project. That project is essentially to take a list of the tickets that come through Zoho Desk based on priority/shift times and sort them by ones that are unassigned, and…
Wattson
  • 23
  • 3
2
votes
1 answer

How to fix MongoDB Data API error: "Header missing: please add content-type: application/json or application/ejson to specify payload data types"

I was attempting to insert a document into MongoDB Atlas, via the Data API. However, the API kept returning the following error: Header missing: please add content-type: application/json or application/ejson to specify payload data types. This was…
2
votes
1 answer

Create Response time KPI on one zoho

Response time KPI – Currently, the response time is including the hours post 6pm (out of working hours). Need to update the calculations such that response time is based on the working hours Monday to Sunday, 9am to 5pm. For example, if an enquiry…
Quinn C
  • 31
  • 4
2
votes
1 answer

how can i add the Unselected Multiselect to Traineemul in zoho creator using deluge script

variable = List(); for each r in input.Trainees_Present { variable.add(r.Intern_No); } input.Trainees_Absent = variable.tostring(); input.TraineeMul:ui.add(variable);` //In this variables added in TraineeMul is which are selected in…
2
votes
1 answer

Zoho Deluge - JSON POST

I am trying to use a POST command in deluge to recall a document. When I make the call I get back a no file found (I have verified the id is correct). The format should come out like this: POST https://sign.zoho.com/api/v1/requests/[Request…
2
votes
1 answer

How to access a json array using Zoho Deluge's POST method?

I am having a bit of trouble accessing Zoho inventory's api which has a data array, this is how it looks { "date": "2015-05-28", "reason": "Damaged goods", "description": "Just a sample description.", "reference_number":…
2
votes
2 answers

Property folder in payload has a value that does not match schema

the graph API request to create a folder in one drive is POST /me/drive/root/children Content-Type: application/json My code: callMap = Map(); callMap.putAll({"name":"New…
Maxima
  • 69
  • 8
2
votes
2 answers

Recieving Null response from visitorsession variable during deployment salesIq zo

I am a little baffled with the issue I am facing with Zobot. I have developed a Zobot in which I am using visitorsession to store some values and reuse them later. It works great in Zoho Developer environment, we used Deluge scripts option to do the…
Ugendran R
  • 21
  • 1
2
votes
1 answer

Zoho Creator Deluge InvokeUrl : How to pass form parameters to third party form?

How to pass form parameters to a third-party web form with Zoho-Creator-Deluge's InvokeUrl() function? Here is the code I have tried: Try-1 auth_url = "https://example-form.com" header_data =…
ZohoCoder
  • 385
  • 5
  • 15
2
votes
2 answers

Zoho Deluge: how to display the type of an object or variable?

I have a variable in a deluge script and I want to display its data type in the log. I tried this, which reports there is no function type(): info type(my variable); Also I searched for zoho deluge data type and zoho deluge introspection but didn't…
ZohoCoder
  • 385
  • 5
  • 15
2
votes
1 answer

Slideshare api getting 'Failed API Validation' error response

I have applied for slideshare API and i got the API and the secret. All i have did is a simple GET request to slideshare which gives me results with the help of a tag. This is my deluge script which i have tried to call the url using the API. As per…
Deepak
  • 2,660
  • 2
  • 8
  • 23
1
vote
0 answers

Bad Header Request Error for "content-type: application/*+json"

I am writing an API integration using Zoho Creator and could use a bit of guidance on framing the curl expressions correctly when invoking the API. The below code is in curl and works perfectly when tested: curl --request POST \ --url…
1
2 3 4 5 6