Deluge Reference Guide
Getting Related Records
You can fetch related information (Notes, Tasks, Contacts, etc.) about a record using the zoho.fsm.getRelatedRecords() deluge task. Syntax Method Used Syntax Using the Internal Connection <Response> = zoho.fsm.getRelatedRecords(<relationName>, ...
Updating Records
You can update a record of a module using the zoho.fsm.updateRecord() deluge task. Syntax Method Used Syntax Using the Internal Connection <Response> = zoho.fsm.updateRecord(<module>, <NUMBER>, <KEY-VALUE>); Using the Connection of a Service ...
Add records
You can create records using the zoho.fsm.createRecord() deluge task. Syntax Method Used Syntax Using the Internal Connection <Response> = zoho.fsm.createRecord(<module>, <KEY-VALUE>); Using the Connection of a Service (Default/Custom) <Response> = ...
Get Record By ID
Every record created has a unique ID. If you know a record's ID, you can pull all of its information by using the zoho.fsm.getRecordById() deluge task. Using this task, you can obtain the record's information in JSON format. Syntax Method Used Syntax ...
Fetch records
You can fetch records from a module using the zoho.fsm.getRecords() deluge task. Syntax Method Used Syntax Using the Internal Connection <Response> = zoho.fsm.getRecords(<module>); Using the Connection of a Service (Default/Custom) <Response> = ...
Send Notifications
Send mail The sendmail deluge task when executed sends an email to the specified recipients. Syntax sendmail [ from: <from_address> to: <to_address> subject: <subject> message: <message> ] where, <from_address> is the value you provide here will be ...