
Hello,
I am using the Microsoft To-Do "When a to-do in a specific folder is updated (V2)" to trigger my workflow. I would like to set the trigger conditions so that the workflow only runs when the To-Do task is marked 'Completed'.
I am using the following formula in the trigger conditions, but the flow never runs, not when a task is modified whether its completed or not.
@equals(triggerOutputs()?['status'],'completed')Is anyone familiar with this trigger? If so, some assistance would be much appreciated!
Thanks,
Landon
Solved it by adding "body". Here is the working trigger condition formula:
@equals(triggerOutputs()?['body/status'],'completed')Rookie mistake. Keeping this up for others who search the To-Do trigger condition topic. Cheers