Search Loan Account
To retrieve details of a loan account, send a GET request to the following endpoint:
GET
/api/LoanAccount/v1/Search
The response will contain relevant information associated with the loan account that matches the search criteria, allowing users to access and review details. This API endpoint facilitates the retrieval of loan account data, enabling users to access the necessary information for their specific requirements.
Headers
Content-Type*
application/json
Authorization*
Bearer <token>
Request-Reference
{unique-reference}
Query Parameter
accountNumber
string
The unique number identifying the account
customerID
string
The unique identifier of the customer associated with the loan account
accountName
string
The name associated with the account
productCode
string
The code of the product associated with the account
accountOfficerCode
string
The code of the account officer managing the account
accountStatus
string
The current status of the account (e.g., Active, Inactive)
hasDisbursed
boolean
Indicates whether funds have been disbursed from the account using true
or false
startDate
date
The start date of the account activity
endDate
date
The end date of the account activity
pageNumber
integer
The current page number for pagination
pageSize
integer
The number of records per page
sortColumn
string
The column by which the results are sorted
direction
string
The direction of the sort (e.g., ascending or descending)
Here is an example request and response with a sample payload sent to the endpoint in Curl format.
Last updated