Hi
I am working on an automation which sends a message to a Teams channel with all tasks due for today or tomorrow.
My current solution creates a random list in this format:
{{#each}}{{18.value}}
{{31.assignee_name}}
{{18.content}}
{{30.project_name}}
" / each}}
This works, but I would like to group the tasks by name. See example:
Tasks due today:
assignee_name1
{{18.content}} #1
{{30.project_name}} #1
{{18.content}} #2
{{30.project_name}} #2
{{18.content}} #3
{{30.project_name}} #3
assignee_name2
{{18.content}} #1
{{30.project_name}} #1
{{18.content}} #2
{{30.project_name}} #2
Tasks due tomorrow:
… and so on.
You can see my setup here, I have two API-calls - one for tasks due today and one for tasks due tomorrow:
I have tried to use an array aggregator but this setup does not work:
I am bit of a novice in this. Can you please help?