Set Up Functions
You can set up functions in six places:
- Create a standalone function.
- Associate function to a workflow rule.
- Use functions later by including them in Schedules.
- Set the function to get executed upon the click of a Custom Button.
- Associate a function to a Related List.
To create a function
- Go to Setup > Developer Space > Functions.
- Select the My Functions page, click + New Function.
- In the Create Function page, do the following:
- Give a Name, Display Name and Description (optional) for the function.
- Choose the place (Category) where the function is meant to be added.
- Click Next.
- Click Edit Arguments.
- Set the arguments to be used in the script, with field name or custom value in Zoho FSM module.
- Write your required function in the Deluge Script Editor.
- Click Save & Execute to validate your code.
- Click Save.
The function will be listed in the List View of the My Functions page.
Please note that the functions specified to be used at a particular location cannot be used elsewhere. For example: a function configured for Workflow Rules cannot be used in Schedules.
Calling Functions using REST APIs
A function lets you have additional functionalities and features in your Zoho FSM application apart from the conventional features. Functions needs a trigger to call it. The trigger could be in the form of a workflow, blueprint, related list or through the click of a button.
If the function needs to be triggered without employing these methods or from external sources, you can create standalone functions and make them available as API calls. Triggering functions through REST APIs which gives the flexibility to trigger it from anywhere inside Zoho FSM or from any third party application.
Sample function as an API call:
A form which automatically generates a lead in Zoho FSM with the information given as input in a form.
Step 1: Create a standalone function with the following code.
newRecordInfo = Map();
newRecordInfo.put("Last_Name",LastName);
newRecordInfo.put("Company",Company);
newRecordInfo.put("Mobile",Mobile);
response = zoho.crm.createRecord("Leads",newRecordInfo);
id = response.get("id");
return id;
Note: The arguments to be passed for the above function are "LastName", "Company" and "Mobile". Datatype for the arguments is STRING.
Step 2: To make function available as an API
- Go to Setup > Developer Space > Functions.
- Hover over the name of the function and click the more options [] icon and select REST API.
- Set the API name for the custom function.
- Enable OAuth2.0 and the API key sliders.
- Click Save.
Note:
- Select OAuth2.0 for sharing the function as an API within your organization.
- Select API Key for the sharing the function with any 3rd party and enable it to be used by anyone.
Step 3:
Using
Zoho Creator, create a form such that it has the fields "LastName", "Company" and "Mobile". Program the function to get executed upon the click of Submit button.
Functions in Postman
Functions which are given as API calls can be tested using POSTMAN application. However, there are a few things that you need to keep in mind when executing a function in that app.
- The current supported methods for using a function as an API are GET and POST.
- In a POST request, under the "Body" section, select "form-data".
- Create a Key named "arguments" and the Value as the Input JSON object.
- The arguments can also be given in the URL as arguments={encoded_arguments}
- POST request - Arguments Limit
- In request URL - 5000 lines
- In body - 95000 lines (as JSON object)
Sample arguments in "Body":
{
"Last_Name":"Potter",
"Company":"Zylker",
"Mobile":"555-876-4367"
}
Deploying Functions in Workflow Rules
To associate function to a workflow rule
- Go to Setup > Automation > Workflow Rules.
- In the Workflow Rules page, click + Create Rule.
- In the Create New Rule pop-up, specify workflow rule parameters.
- Under Instant Actions, select Function.
- Select the function you want to use and click Associate. Else click +New Function and write a script using Deluge script
- Click Save in the Workflow rule page.
Now, your customized function is associated with workflow rule. When the workflow rule is triggered, custom function will be automatically executed.
Points to remember
- You can associate up to 6 (1 Instant Action and 5 Time-Based Actions) functions per workflow rule.
- You can execute only 5000 lines (Statements) in a single function call.
- You can transfer data for a maximum of 10 fields from Zoho FSM to third-party applications using function.
- You can retrieve data from other Apps to Zoho FSM using function.
- You must update the API ticket regularly according to limits in third-party applications.
- You will not receive any email notification, if the function integration stopped functioning due to any issue in a third-party API.
- If there is any failure while connecting to Zoho Creator service, function will send the second notification after 15 min. Thereafter, the system will not send any notifications for that particular workflow trigger. Errors returned from Zoho Creator are shown under Reason for Failures section.
- If you exceed the maximum count per day, the system will not send remaining function notifications to third-party applications and will notify the failure to Administrator.
- Zoho FSM will the send the data in following standard format for Date and Date Time fields to third-party applications:
- Date: yyyy-MM-dd
- Date Time: yyyy-MM-dd hh:mm
- Limits for Custom Functions:
- Calls per Day - 10000 calls/day or 200 calls per user license for the org. (whichever is lower)
- Integration Tasks - 25000 Zoho API calls/day using deluge
- Get Data & Post Data - 25000 calls/day (totally)
- Send Email - 1000 emails/day
Refer Error Codes
When the execution of function fails, one of the following error messages will be displayed in Zoho FSM:
HTTP Status Codes
- 400 Bad Request: Often missing a required parameter.
- 401 Unauthorized: No valid API key provided.
- 402 Request Failed: Parameters were valid but request failed.
- 404 Not Found: The requested item doesn't exist.
- 500, 502, 503, 504 Server errors: Error in the third-party application.
- Error Code 1: Temporarily not able to connect to the API server. Check API server logs, firewalls settings for requests sent from Zoho FSM.
Custom Errors
- Internal process failure: When the function is not executed due to errors in processing of the script.
- Day limit reached: When the company has reached the maximum limit for the day.
- Deluge Script: When the execution of workflow triggers fail due to errors in Deluge Script.