/* * 연동회원의 잔여포인트를 확인합니다. * - 과금방식이 파트너과금인 경우 파트너 잔여포인트 확인(GetPartnerBalance API) 함수를 통해 확인하시기 바랍니다. * - https://docs.popbill.com/htcashbill/dotnetcore/api#GetBalance */ public IActionResult GetBalance() { try { var result = _htCashbillService.GetBalance(corpNum); return(View("Result", result)); } catch (PopbillException pe) { return(View("Exception", pe)); } }