Hello @goyalkritika ,You can try the following code, Gson gson = new Gson();
// If you have the Json in string, jsonString = "{ "orgUnit" .....}"
// If you already have jsonObject just skip this line
JsonObject jsonObject = gson.fromJson(jsonString, JsonObject.class);
JsonObject...