Single Loan

async viewLoanDetail()

To view the details for specific loan request, you should use:

  • token:string– is the token you will get from the authentication

  • loanId:number– is the id of that specific loan.

const response = await this.newBorrowingService.getLoanDetail({
    token: token, loanId
})

Last updated