Looking for guidance on taking multiple array of objects, then pulling out specific key for each object, then combing them at the end within a single array of objects.
Here's the current flow.
Here's what's currently output
[
{
"Customer": "1234"
},
{
"Annual Revenue (USD)": "234"
},
{
"Scope of Services": "234"
}
]
Desired output:
[
{
"Customer": "1234",
"Annual Revenue (USD)": "234",
"Scope of Services": "234"
}
]Any recommendations?


Report
All responses (
Answers (