Hi @jpizano ,
Step 4 and 5 contradict each other. If the length of the items in step 3 is zero there is nothing to iterate and the statement at step 5 will never execute. (I think this may be the gist of @emily.mccarthy s response)
The only use I can see for step 5 is if more than one employee were delivered with each trigger of the recipe. It can occur that webhooks deliver payloads in batches rather than individually. In that case the For would iterate through all the items in step 1, not step 3, and steps 2 and 3 would be inside the loop. So, I don’t think that is the intention here.
What you could try, if you are in test mode, is to move step 6 up above step 5, i.e. out of the loop, and then skip step 5 (or step 6 as it will be after this move). Then repeat one of the jobs in the job list and see what happens.