So I have a JSON object that looks like this:
{
    "accessToken" : "<dont need this>",
    "clientToken" : "<nor this>",
    "selectedProfile" : {
        "id" : "<nope>",
        "name" : "<I need this>",
        "legacy" : true
    },
    "availableProfiles" :
    [
        {
            "id" : "<not this>",
            "name" : "<not this>",
            "legacy" : true
        }
    ]
}
So what I need is selectedProfile > name. I am able to extract selected profiles, would I just repeat the process on that? What should I do to retrieve it?
 
     
     
    