/* * 팝빌에서 반환 받은 접수번호를 통해 팩스 전송상태 및 결과를 확인합니다. * - https://docs.popbill.com/fax/dotnetcore/api#GetFaxDetail */ public IActionResult GetFaxDetail() { // 팩스전송 요청시 발급받은 접수번호 string receiptNum = "018112714511700001"; try { var Response = _faxService.GetFaxDetail(corpNum, receiptNum); return(View("GetFaxDetail", Response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }