I have an array or may be payload which is object an array,
{
"key": "value",
"key2": "value2"
"myids": [
{
"key": "value",
"num": 123,
"label": "equal"
}
]
}
but need to change this payload to just below object of object
{
"key": "value",
"key2": "value2"
"myids": {
"myid": {
"key": "value",
"num": 123,
"value": "equal"
}
}
}
this myid object is fix i have to make this and put array into this any kind of help of would be grateful...