Hi @Kelly_StarzEnt,
When you say it gets flattened to data string what does this mean?
I have tested this and the response basically creates JSON representation of the array something like, for example here you can see response for array of user groups, and then the json array can be processed later on (also can be converted back to array by using "Parse JSON" module)
[
{
"ID": "t",
"name": "User t",
"objCode": "GROUP",
"owners": [
{
"ID": "tt",
"name": "User",
"objCode": "USER"
}
]
},
{
"ID": "tes",
"name": "Group",
"objCode": "GROUP",
"owners": [
{
"ID": "tested",
"name": "User",
"objCode": "USER"
}
]
}
]
Hopefully this helps, please let me know if you have any other questions.
Best regards,
Ivan