I am trying to access the value of creator from the below dictionary along with other values like description and email.
I tried converting it to json and then access the keys. But it did not work. Is the only way to iterate the entire dictionary and get the values of all keys.
Any suggestions would be great !!
{
"description": xxx,
"email": xxx@scotiabank.com,
"creator": {
"data": [
{
"name": "john"
"id": "123"
},
{
"name": "victor"
"id" : "345"
}
]
}