How to write and then read data with Nested array structure into stage in OIC?
Content
Hi All,
I am trying to write multiple employees data and their corresponding multiple address into stage and then read it at once and send as response in single call.
Can someone help me on how to achieve this?
Expected response:
{
"Employee":[{
"Name":"ABC",
"Id":123,
"Age":24,
"Address":[
{
"City":"Test1",
"State":"Test2"
},
{
"City":"Test3",
"State":"Test4"
}]
},
{
"Name":"DEF",
"Id":456,
"Age":24,
"Address":[
{
"City":"Test5",
"State":"Test6"
},
{
"City":"Test7",
"State":"Test8"
}]
}]
}
Thanks,
Ranganadh
Tagged:
0