<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
0D5KZ00000cHDmY0AWOkta Identity EngineWorkflowsAnswered2025-04-30T17:53:05.000Z2025-04-14T15:16:33.000Z2025-04-30T17:53:05.000Z

BarryS.04877 (Customer) asked a question.

Need help cleaning up arrays combined into one containing "output"

I have a workflow that makes an API call for a user's apps along with app profile. Using the map function I call a helper flow that returns a claim that is an array value from the object (item) that is passed in.

 

I am hoping to have all arrays (one from each helper function) combined such as:

 

[

  "a",

  "c",

  "d"

]

 

where the child flow returned an empty array (this is expected as no value for what would be "b")

 

But instead I get:

 

[

 {

  "output": ["a"]

 },

 {

  "output": "[]"

 },

 {

  "output": ["c"]

 },

 {

  "output": ["d"]

 }

]

 

Between the flow and the helper flow I'm now sure where or how to fix this.

 

 


This question is closed.
Loading
Need help cleaning up arrays combined into one containing "output"