I am getting below JSON request
[{
"Weight": "787.00",
"Volume": "65.00",
"TrackID": "128260490",
"item": [
{
"Description": "basketball",
"totalquantity": 1
},
{
"Description": "football",
"totalquantity": 4
}
]
},
{
"Weight": "68.200",
"Volume": "44.298",
"TrackID": "890433466",
"item": [
{
"Description": "hockeystick",
"totalquantity": 8
}
]
}
]
and I am looking output (in json format only) in below manner:
{
Purchasedetails: [
{
"TrackID": 128260490,
"Description": "basketball",
"totalquantity": 1
},
{
"TrackID": 128260490,
"Description": "football",
"totalquantity": 4
},
{
"TrackID": 890433466,
"Description": "hockeystick",
"totalquantity": 8
}
]
}
Here if you see closely same tracking id is coming in basketball and football (description) as they have common TrackID, how can I handle this TrackID logic?