示例#1
0
 /*
  * 팝빌에 등록한 연동회원의 팩스 발신번호 목록을 확인합니다.
  * - https://docs.popbill.com/fax/dotnetcore/api#GetSenderNumberList
  */
 public IActionResult GetSenderNumberList()
 {
     try
     {
         var response = _faxService.GetSenderNumberList(corpNum);
         return(View("GetSenderNumberList", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }