Individual node JS code in messengers API chains
To customize the chain individually, you can create a link with a custom Node JS code. In fact, this link was created to provide you with more self-sufficiency in working with the API chain. Use this opportunity to work out individual tasks and needs.
All parameters that have entered the system are available in the local scope (this), all changes with the scope will be considered the result of code execution.
Customization
Enter the code in the initial setup, for this purpose there is a graphical code highlighting that is used in development tools. You can also enter the code in static data, but this is less convenient.
Response
Unlike other link templates, this link does not provide an answer. All changes are immediately sent to the system. If you have deleted or added something on Skype, it will affect the general data, for example:
{
first:true,
second:false
}
after executing the following code:
The data will be obtained:
{
second:true,
third:’test’
}