API Search endpoints…⌘K

Run a predefined report

GET/lokta-lms/api/v1/runreports/{reportName}

This resource allows you to run and receive output from pre-defined Lokta reports.

Reports can also be used to provide data for searching and workflow functionality.

The default output is a JSON formatted "Generic Resultset". The Generic Resultset contains Column Heading as well as Data information. However, you can export to CSV format by simply adding "&exportCSV=true" to the end of your URL.

If Pentaho reports have been pre-defined, they can also be run through this resource. Pentaho reports can return HTML, PDF or CSV formats.

The Lokta reference application uses a JQuery plugin called stretchy reporting which, itself, uses this reports resource to provide a pretty flexible reporting User Interface (UI).

Example Requests:

runreports/Client%20Listing?R_officeId=1

runreports/Client%20Listing?R_officeId=1&exportCSV=true

runreports/OfficeIdSelectOne?R_officeId=1&parameterType=true

runreports/OfficeIdSelectOne?R_officeId=1&parameterType=true&exportCSV=true

runreports/Expected%20Payments%20By%20Date%20-%20Formatted?R_endDate=2013-04-30&R_loanOfficerId=-1&R_officeId=1&R_startDate=2013-04-16&output-type=HTML&R_officeId=1

runreports/Expected%20Payments%20By%20Date%20-%20Formatted?R_endDate=2013-04-30&R_loanOfficerId=-1&R_officeId=1&R_startDate=2013-04-16&output-type=XLS&R_officeId=1

runreports/Expected%20Payments%20By%20Date%20-%20Formatted?R_endDate=2013-04-30&R_loanOfficerId=-1&R_officeId=1&R_startDate=2013-04-16&output-type=CSV&R_officeId=1

runreports/Expected%20Payments%20By%20Date%20-%20Formatted?R_endDate=2013-04-30&R_loanOfficerId=-1&R_officeId=1&R_startDate=2013-04-16&output-type=PDF&R_officeId=1

**Available Parameters (All Optional):**

**Common Control Parameters:**
- `exportCSV`: Set to true to export results as CSV (default: false)
- `parameterType`: Indicates if this is a parameter type request (default: false)
- `output-type`: Output format type (HTML, XLS, CSV, PDF)
- `enable-business-date`: Enable business date filtering
- `obligDateType`: Obligation date type
- `decimalChoice`: Decimal formatting choice
- `Portfolio at Risk by Branch`: Portfolio risk parameter

**Common Report Parameters (R_ prefixed):**
- `R_officeId`: Office ID filter
- `R_loanOfficerId`: Loan officer ID filter
- `R_currencyId`: Currency ID filter
- `R_fromDate`, `R_toDate`: Date range filters (yyyy-MM-dd)
- `R_accountNo`: Account number filter
- `R_transactionId`: Transaction ID filter
- `R_centerId`: Center ID filter
- `R_branch`: Branch filter
- `R_ondate`: Specific date filter
- `R_cycleX`, `R_cycleY`: Cycle filters
- `R_fromX`, `R_toY`: Range filters
- `R_overdueX`, `R_overdueY`: Overdue filters
- `R_endDate`: End date filter

**Other Common Parameters:**
- `OfficeId`: Office ID filter (alternative)
- `loanOfficerId`: Loan officer ID filter (alternative)
- `currencyId`: Currency ID filter (alternative)
- `fundId`: Fund ID filter
- `loanProductId`: Loan product ID filter
- `loanPurposeId`: Loan purpose ID filter
- `parType`: Portfolio at risk type
- `SelectGLAccountNO`: GL account number selection
- `SavingsAccountSubStatus`: Savings account status
- `SelectLoanType`: Loan type selection

**Note:** All parameters are optional and report-specific.
The exact parameters required depend on the specific report being executed.
Some reports may accept additional parameters not listed here.

Path parameters

reportNamepath · string · required

The name of the report to execute (e.g., 'Client Listing', 'Expected Payments By Date')

Query parameters

exportCSVquery · boolean · optional

Set to true to export results as CSV

parameterTypequery · boolean · optional

Indicates if this is a parameter type request

output-typequery · string · optional

Output format type (HTML, XLS, CSV, PDF)

R_officeIdquery · string · optional

Office ID filter

R_loanOfficerIdquery · string · optional

Loan officer ID filter

R_fromDatequery · string · optional

Start date filter (yyyy-MM-dd)

R_toDatequery · string · optional

End date filter (yyyy-MM-dd)

R_currencyIdquery · string · optional

Currency ID filter

R_accountNoquery · string · optional

Account number filter

Responses

200OK - Report executed successfully
400Bad Request - Missing or invalid parameters
401Unauthorized - Not authorized to run this report
500Internal Server Error

Response fields

columnHeadersarray of ResultsetColumnHeaderData · optional
dataarray of ResultsetRowData · optional

Every request authenticates with HTTP Basic and carries a Tenant-Identifier header. See the conventions for dates, commands, pagination and errors. Open this operation in the interactive explorer, or read it as Markdown.