I have created a workflow that searches in ISC for account activity and identifies Active Directory accounts enabled within the last hour. It then sends an email notification to the managers of those users.
However, I’m encountering an error related to the loop variable.**
“errorMessage”: “expected top-level JSON object in string, got array without attribute wrapper (type: Error Parsing Activity Output, retryable: false)”,
I tried the same approach, but it didn’t work for me. It seems there’s an issue with using two loops in a single workflow. To work around this, I created two separate workflows to achieve the desired result.
In my case, there are two HTTP actions—one returns identities and the other returns account activities. Both results are processed using separate loops.
I noticed that while the first loop executes correctly, the second loop throws an error when it starts.