Get Loan Repayment Schedule

This returns a customer's loan repayment schedule

To get a customer's loan repayment schedule you need to first build the complete loan repayment schedule endpoint by passing version in the query path and account number to the query params then making a get request to this endpoint

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/Loan/GetLoanRepaymentSchedule/version?loanAccountNumber={{customer_account_number}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Loan/GetLoanRepaymentSchedule/version?loanAccountNumber={{customer_account_number}}

Here is an example request with sample payload to the staging endpoint.

GET http://staging.mybankone.com/BankOneWebAPI/api/Loan/GetLoanRepaymentSchedule

Path Parameters

Name
Type
Description

version*

Int

Current API version

Query Parameters

Name
Type
Description

loanAccountNumber*

Int

Customers account number

{
    // Response
}

Last updated