Hello,
I am currently building a workflow that will create ServiceNow tickets for identities that are not getting role based access. We have a saved search that checks for users who are not receiving access through a job title role. My workflow is meant to get that list of identities, loop through them and create a servicenow ticket for each identity. The issue I am running into, is that the Get List of Identities step in the workflow, is returning too much data that I do not need in the response body. The query only returns 3 identities but the response body has every attribute, every entitlement, every role, etc. that is associated to the identities. I believe my loop is failing due to the excess data in the response body. This is what is happening when I test the workflow.
Here is my loop input

I know the loop operator has a limit of 100 items in the array that is passed to it, which is what I think is making this loop fail, although I could be wrong. I was wondering if this is the normal output for the Get List of Identities tile, and if so, how can I limit the response to only the fields I need, so that I can pass that to my loop? Any help would be much appreciated, thank you!


