I have this call I am making with
ResponseEntity<String> response = new RestTemplate().exchange(url, HttpMethod.GET, request, String.class);
String json = response.getBody();
This returns the following json
{
"id": "T-5IB4VHCDNJs9AAQr31zQlKRjfA0WEnMe1pLrp5irXRRnw",
"accountId": "qi0oxfBt0C968y6ku1rsxWeqSDolBFWYRlLgxVTo5FHVIeQ",
"puuid": "HDzjdaStxhHcceGGd8qJcc4Vw45FOlOQ1PNXKQ0h9_iqfwHP3oI0spl1bLUOw_7_J49vzaIKylv5Vg",
"name": "King yibz",
"profileIconId": 4072,
"revisionDate": 1639613941000,
"summonerLevel": 221
}
what is the best way to just return the summonerLevel value?