Get List of Identities breaking loop in Workflows

To validate if it’s the size that is causing the issue and nothing else, try limiting your input to $.getListOfIdentities.identities[0:10] (as an example).
If you only need the id of the identities for your HTTP Request, try changing to $.getListOfIdentities.identities[*].id, this will simplify your input.
If you need to loop through a large data set that exceeds the loop input maximum, take a look at this article: Recursive Workflows in IdentityNow for asynchronous and synchronous recursion. It can be helpful if you need to execute on a large list of items with an unknown size, and there are great examples and code artifacts to help.

1 Like