Ниже правильный код. Добавлен responseType и удален Content-Type.
setMpin(otprefno){
let data = "SessionId=1990009769OKYLLDDP&RQDeviceId=9876543217&RQRefNo="+otprefno+"&RQLoginUserId=101068073&RQDeviceFormat=Tablet&RQOperationId=USRREGREQ&RQDeviceFamily=Android&RQTransSeq=01&RQOTP=123123&RQClientAPIVer=1.0&RQMPIN=MTExMTEx";
console.log(otprefno);
console.log(data);
return this.http.post(this.url+'/rbl/Registration2', JSON.stringify(data), {
responseType: 'text'
});
}