Looking to retrieve the first object from this dynamic list:
{
"2489": {
"status": {
"idstatus": "3",
"status": "Sold"
}
},
"2490": {
"status": {
"idstatus": "3",
"status": "Sold"
}
}
}
The specific IDs ['2489'] and ['2490'] are unknown beforehand. The response may include varying numbers of these IDs.
How can I access ['2490'].status.idstatus without prior knowledge of the ID ['2490']?