コード例 #1
0
 /*
  * 연동회원 사업자번호에 등록된 담당자(팝빌 로그인 계정) 목록을 확인합니다.
  * - https://docs.popbill.com/fax/dotnetcore/api#ListContact
  */
 public IActionResult ListContact()
 {
     try
     {
         var response = _faxService.ListContact(corpNum);
         return(View("ListContact", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }