my response getting successfully displayed when password and confirm password typed right....but when it mismatched it is not going to else part....not showing toast anything...
Okay so you need to read the Error ResponseBody
val errorBodyBuffer = Buffer() res.errorBody()?.writeTo(errorBodyBuffer) val errorBodyString = errorBodyBuffer.clone().readUtf8()
Now you can use Gson or JsonObject to parse the errorBodyString
errorBodyString