This is the data recived from an API Call
[
{
"id": "id1",
"data": "text"
},
{
"id": "id2",
"data": "text"
}
]
How could i get the JSON data to look like this?
{
"id1": {
"data": "text"
},
"id2": {
"data": "text"
}
}