Core Banking Services
  1. Reporting
Core Banking Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Product List
      GET
    • Create Account
      POST
    • Find Client
      POST
    • Accounts
      GET
    • Create Additional Account
      POST
    • Account Details By BVN
      GET
    • Get Client Addresses
      GET
    • Get Account Details
      GET
    • Get Account Summary
      GET
    • Client Images
      GET
    • Update BVN
      POST
    • Update Transaction Limit
      POST
  • KYC
    • Get KYC Info
      POST
    • Update KYC
      POST
  • Transaction
    • Payment Types
      GET
    • Debit Account
      POST
    • Credit Account
      POST
    • Transaction History
      GET
    • Transaction Details
      GET
  • Transfer
    • Get Institutions
    • Name Inquiry
    • Interbank Transfer
    • InterBank Transfer Query
    • Transfer Details
    • IntraBank Transfer
    • Intrabank Transfer To Virtual Accounts
  • Reporting
    • Report Types
      GET
    • Get Report Parameters
      GET
    • Create Report
      POST
    • Report Details
      GET
    • Get Reports
      GET
  1. Reporting

Report Types

GET
/core/reporting/types
This endpoint retrieves a list of available report types in the system. Each report type contains an ID, name, and additional attributes.

Response Body#

The response is a list of Json objects with the following fields:
Field NameTypeDescription
idintegerUnique identifier for the report type.
namestringName of the report type.
featuredstringIndicates whether the report type is featured ("true" or "false").
deletedbooleanIndicates whether the report type is deleted.

Request

None

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/core/reporting/types'

Responses

🟢200Success
application/json
Body
object {0}
Example
[
    {
        "id": 2,
        "name": "TRANSFERS REPORT",
        "featured": "true",
        "deleted": false
    }
]
Modified at 2025-03-19 15:04:31
Previous
Intrabank Transfer To Virtual Accounts
Next
Get Report Parameters
Built with