You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to codename-taurus
Hello,
I'd like to define variables that I could use with the foreach loop.
I did not find an answer in the documentation...
How to do it ?
Thanks,
David
muduli....@gmail.com
unread,
Sep 7, 2018, 5:53:30 AM9/7/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to codename-taurus
"variables": {
"uid": "${__time(ddmmmyyyyHHmmss)}",
"name": "Simon"
},
Can be done by using the variable keyword. Can integrate any function or string . Use ${<variable name>} to use the variable. e.g for the above ${name} ,${uid}
david...@gmail.com
unread,
Sep 7, 2018, 8:15:21 AM9/7/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to codename-taurus
Thanks for your answer,but my question was more about the way I could define a variable that can be used to iterate over a list of elements with the foreach loop.