It depends, but generally… The Loop block expects a raw array, not an object. Your Data Action returns { entities: [...] }, so dataActionResult.entities is correct, but Architect might be choking on the wrapper if the schema isn’t strictly defined. Try mapping the response in the Data Action config to output just the array. Or, use a Set Data action to explicitly assign dataActionResult.entities to a new variable myArray, then loop over myArray. I’ve seen this fail when the JSON content type header is missing application/json in the external response. Check the headers first.