/* * 팝빌 팩스 API 서비스 과금정보를 확인합니다. * - https://docs.popbill.com/fax/dotnetcore/api#GetChargeInfo */ public IActionResult GetChargeInfo() { try { // 수신번호 유형, 일반 / 지능 중 택 1 string receiveNumType = "일반"; var response = _faxService.GetChargeInfo(corpNum, userID, receiveNumType); return(View("GetChargeInfo", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }