JsonElement, JsonObject JsonArray, . .toString , .
RequestBody :
@POST("/exampleRout")
Call<JsonElement> foo(@Body RequestBody requestBody);
:
public void onResponse(Call<JsonElement> call, Response<JsonElement> response) {
JsonElement jsonElement = response.body();
String yourResponseString = jsonElement.toString();
//parse it with regEx or XML parser and etc
}