Get Loan Tracking Report

To obtain the loan tracking report, make a GET request to the endpoint: GET /api/Report/v1/GetLoanTrackingReport The request should contain the necessary parameters to identify the specific loan tracking report. This facilitates the retrieval of loan tracking information and management of loan-related data.

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Query Parameter

Name
Data Type (length)
Description

useCurrentFinancialDate

boolean

If true is set, the current financial date will be used, and If false is set, you must provide a financial date

financialDate

date

The financial date is to be used if useCurrentFinancialDate is set to false

loanAccountNumber

string

The unique identifier for the loan account

branchCode

string

The code representing the branch of the loan account

productCode

string

The product code linked to the loan account

employeeID

string

The employee ID linked to the report request

accountOfficerStaffID

string

The staff ID of the account officer responsible for the loan

pageNumber

integer

The page number for paginated results

pageSize

integer

The number of records per page for paginated results

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g '{{baseUrl}}/api/Report/v{{version}}/GetLoanTrackingReport?UseCurrentFinancialDate=true&LoanAccountNumber=1000003305000072273&BranchCode=001&ProductCode=001&EmployeeID=001&AccountOfficerStaffID=110&PageNumber=1&PageSize=10'
Respose: 200
//

Last updated