/* * 사용하고자 하는 아이디의 중복여부를 확인합니다. * - https://docs.popbill.com/htcashbill/dotnetcore/api#CheckID */ public IActionResult CheckID() { //중복여부 확인할 팝빌 회원 아이디 string checkID = "testkorea"; try { var response = _htCashbillService.CheckID(checkID); return(View("Response", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }