Virtual Account Services
  1. Reporting
Virtual Account Services
  • Introduction
  • Terminologies
  • Webhooks
  • Authentication
  • Account
    • Create Account
      POST
    • Rename Account
      POST
    • Balance Inquiry
      GET
    • Create Bulk Accounts
      POST
    • List Accounts
      GET
  • Transaction
    • Credit Account
      POST
    • Debit Account
      POST
    • Credit Account [Agency Banking]
      POST
    • Debit Account [Agency Banking]
      POST
    • Transaction Query
      GET
    • Transaction Details
      GET
    • Transaction History
      GET
  • Transfer
    • Get Institutions
      GET
    • Name Inquiry
      POST
    • Interbank Transfer
      POST
    • Interbank Transfer [Sync]
      POST
    • Transfer Query
      GET
    • Transfer Enquiry
      GET
    • Virtual Account Intrabank Transfer
      POST
    • Core Banking Intrabank Transfer
      POST
    • Collection Accounts Intrabank Transfer
      POST
  • Invoice
    • Create Invoice
    • Get Invoice Detail
    • List Merchant Invoices
  • Refunds
    • Initiate Refund
    • Get Refund Status
    • Get Refunds
  • Notifications
    • Notification
    • Send Notification
  • Merchant
    • Account
      • Get Account
      • Activate Sub Ledger For Merchant
      • Get SubLedger Callback Urls
      • Set SubLedger Callback Urls
      • Get Collection Accounts
    • Transfer
      • Get Transfer History
      • Get Subledger transfers
      • Get Transfer Details
      • Name Inquiry
    • Refund
      • Refund Details
  • Admin
    • Accounting
      • Get GL Accounts
      • Get Classification Codes
    • Dashboard
      • Dashboard Summary
      • Dashboard Transactions
      • Dashboard Transaction Details
    • Group Codes
      • Get Group Codes
      • Set Collection Account
      • Create Group Code
    • Reporting
      • Get Report Types
        GET
      • Get Report Parameters
        GET
      • Create Report
        POST
      • Get Reports
        GET
      • Get Reports Details
        GET
  1. Reporting

Get Report Parameters

GET
/admin/reporting/types
This API retrieves a list of report parameters that are used for generating various reports. This information is essential for dynamically constructing report filters and ensuring accurate data retrieval based on user selections.

Response Body#

The response is a JSON array of report parameter objects. Each object includes the following fields:
Field NameData TypeDescription
idintegerUnique identifier for the report parameter.
namestringThe name of the parameter (e.g., "START DATE", "TRANSACTION TYPE").
parameterTypestringThe type of parameter (e.g., DATE, ARRAY).
orderintegerThe display order of the parameter.
requiredbooleanIndicates whether the parameter is mandatory.
optionsarrayAn array of available options for selection, if applicable. For some parameters, this may be a list of strings or objects.

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 '/admin/reporting/types'

Responses

🟢200Get Report Parameters
application/json
Body

Example
[
    {
        "id": 1,
        "name": "START DATE",
        "parameterType": "DATE",
        "order": 1,
        "required": true,
        "options": []
    },
    {
        "id": 2,
        "name": "END DATE",
        "parameterType": "DATE",
        "order": 2,
        "required": true,
        "options": []
    },
    {
        "id": 3,
        "name": "TRANSACTION TYPE",
        "parameterType": "ARRAY",
        "order": 3,
        "required": true,
        "options": [
            "INWARD",
            "OUTWARD",
            "ALL"
        ]
    },
    {
        "id": 4,
        "name": "TRANSACTION STATUS",
        "parameterType": "ARRAY",
        "order": 4,
        "required": true,
        "options": [
            "PENDING",
            "SUCCESS",
            "FAILED",
            "ALL"
        ]
    },
    {
        "id": 5,
        "name": "MERCHANTS",
        "parameterType": "ARRAY",
        "order": 5,
        "required": true,
        "options": [
            {
                "id": 17,
                "displayName": "Test Adept For Education",
                "isStaff": false
            },
            {
                "id": 18,
                "displayName": "Adept For Education",
                "isStaff": false
            },
            {
                "id": 24,
                "displayName": "iRecharge",
                "isStaff": false
            },
            {
                "id": 26,
                "displayName": "samuel oketola",
                "isStaff": false
            },
            {
                "id": 27,
                "displayName": "Mohammed Olateju",
                "isStaff": false
            },
            {
                "id": 37,
                "displayName": "Dami Test",
                "isStaff": false
            },
            {
                "id": 39,
                "displayName": "Ben Stokes",
                "isStaff": false
            }
        ]
    }
]
Modified at 2025-02-27 10:45:42
Previous
Get Report Types
Next
Create Report
Built with