➿ITL - ilert template language
In the UI's text mode you may use the Insert data... dropdown to help you add template variables quickly - the text syntax works like this:
Text
Some text
You may of course add generic text content to your liking
Variable
{{
var
}}
Extract content of the event and insert it. Note: there is no further sanitizing of the values
Accessing nested variables
{{ var
.
subfield
.
evenMore }}
Access sub fields
Accessing fields of an array
{{ var.arrayField
[0]
.more }}
Access array contents
Applying functions to variables
{{var.lowerCase}}
Passing arguments to functions
{{var.splitTakeAt('one two', 10)}}
We are in the process of reworking function calling in templates.
This page is WIP we are working on an improved template experience
Last updated
Was this helpful?