ContributionsMost RecentMost LikesSolutionsRe: Hierarchy in a API CALL What i get if i query is. "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1 "Test2": "testing" } ] But i want to get "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1 } ] I have tried making my api call like this <<APICALL>>?fields=id,custom_Fields.Test1 but it doesn't seem to work... Im asking if there is a different way to manipulate my query so i can get the wanted output. Re: Hierarchy in a API CALL Yes i want "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1 } ] But curently i get "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1 "Test2": "testing" } ] Re: Hierarchy in a API CALL Yes that is what i mean. Re: Hierarchy in a API CALL I have a huge data set with alot of fields i do not need in these kind of hierarchies and i want to limit the amount of useless data im loading in. Thats why i am trying to only select Test1 in Custom_fields. Hierarchy in a API CALL Hi i currently have a problem that i can not show certain fields in my API call. "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1, "Test2": "Testing" How can I select the ID and the Test1 under the custom fields part so that it would show the following. "results":[ "ID" : 1, "Custom_fields"{ "Test1": 1,