Get Loans By Customer Id

This returns a customer loans

To get a customer loans by customer's id you first need to build the complete get loans by customer id endpoint by passing version in the url path and authtoken in the query params then make a get request to the 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/GetLoansByCustomerId/version?authToken={{your_authtoken}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Loan/GetLoansByCustomerId/version?authToken={{your_authtoken}}

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

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

Path Parameters

Name
Type
Description

version*

Int

Current version of the API

Query Parameters

Name
Type
Description

authToken*

String

Authentication code for this request

{
    // Response
}

Last updated