Как извлечь стоимость из полезной нагрузки в Java

JsonPath jsonPath = new JsonPath(responseBody);
int user_id = jsonPath.getInt("user_id");
Cruel Caracal