Good afternoon
I need assistance with a flow I am currently trying to build.
The flow loops through a list of tasks to identify the new tasks that have been assigned for the day. The assignees are added to an array, and there is a loop that works as follows:
For each assignee, identify all new tasks allocated to them and create an HTML table with certain columns (to be displayed in an email notification), then check whether the assignee has access to the specific Sharepoint list, and if not it assigns the appropriate access rights.
In my latest test, I have two items with two different assignees - the first one has access and the second one does not yet have access.
The first loop through performed as expected (assignee already had access so actions were skipped)
The second loop through (for the assignee that does not yet have access) returned the following error: "The execution of template action 'Grant_user_access' is skipped: the 'runAfter' condition for action 'Delay' is not satisfied. Expected status values 'Succeeded' and actual value 'Skipped'."
I have double-checked, and the runAfter condition for the 'Delay' action in this loop through is "Succeeded", not "Skipped" like the error message says:
This leads me to think that the HTTP request (Grant user access) is inheriting the runAfter condition for the previous loop through.
I tried adding a 5s delay because I thought it might be a timing issue, but this hasn't helped.
In case it would be useful, my HTTP request looks as follows:
Please assist :)