Custom Code
This node gives you the ability to create custom code in JavaScript and launch it whenever this node is triggered. You can use it to manipulate and alter a selected parameter value.
For example, adding the country code to a selected phone number or a change the date of a conversation.
You can manipulate values collected by the agent during the conversation as well as information sent from a Webhook.


How it works
Step by step example - Add 7 days to call start date
Take the example of an insurance company handling a mortgage request. Having collected all details, they want to tell their customers when they can expect to receive a response.
For the sake of our example, they usually respond after 7 days. In the custom code node, we are using JS code that will add 7 days to the original call start date.
Step 1: Get call start date parameter value. In our case, this will be a value populated in the $DATE parameter. This parameter can be either filled by receiving the value from a third-party service or by the user during the conversation.
Step 2: Increase the value of call_start_date days by 7
Step 3: Return the value. The result of your JS code snippet will be stored in the output parameter. You can either choose a new parameter or the same one as before and override the previous value.

Example Library
Feel free to copy-paste into your custom code node!
>> Date & Time
1. Get the exact point of time when the custom code node was reached
Description:
New Date = Date of right now (time you reach the node)
The custom code node will return '2022-03-15T14:50:22.520Z'
If you want to separate the date from the exact time, see below -
2. Eliminate the exact time from “new date”
Description:
If you use “New Date” as indicated above, you will get '2022-03-15T14:50:22.520Z' returned as a value, if you want to only use the date, use this code snippet.
The custom code node will return '2022-03-15’
3. Change date format
Description:
Use this code if you want to change the way that the date is being presented.
From 2022-03-16 to Wed Mar 16 2022
4. Change time format
Description:
Use this code snippet if you want to change the way the time is being presented.
From 14:00:00 to 2:00 PM
>> Numbers
1. Eliminate special characters from a number sequence
Description:
Alter the way we present a sequence of numbers (e.g. relevant for phone numbers)
Before > 972-58-650-3020 ($phone1)
The custom code node will return 19725865053020 ($phone1Val)
>> Others
1. Combine separate values into one parameter
Description:
Combine separate street name, street number, city, and state as a whole address with a comma ‘,’ in between
Before > fully separate values, e.g. from an API request > Benson Road ($streetname) 15 ($streetnumber) New York ($city) United States ($state)
The custom code node will return Beson Road 15, New York, United States
2. Count the number of items in an array
Description:
The original request shows many different entries of the same category. In our example, “orders”, each holding more information like “order_Number”, “order_Status”, etc, and this custom code counts how many orders there are. Imagine the API response as follows -
The custom code node will return "2" as the value of the output parameter.
Last updated
Was this helpful?