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 Reports

GET
/admin/reporting/types
This endpoint retrieves a list of available reports. Reports provide insights into various system activities, such as merchant transactions. If a report is successfully generated, a download URL may be provided.

Response Body#

Field NameTypeDescription
idintegerUnique identifier of the report.
namestringThe name of the report, which describes its purpose or category.
reportTypeobjectContains metadata about the report type.
reportType.idintegerUnique identifier of the report type.
reportType.namestringName of the report type, such as "Merchant Transactions Report."
reportType.featuredstringIndicates whether the report type is featured (true or false).
reportType.deletedbooleanIndicates whether the report type has been deleted.
statusstringThe current status of the report:
- PENDING: The report is queued for processing.
- IN_PROGRESS: The report is being generated.
- FAILED: The report generation process failed.
- COMPLETED: The report was successfully generated.
createdAtstringTimestamp indicating when the report was requested (ISO 8601 format).
startedAtstringTimestamp indicating when the report generation process began.
completedAtstringTimestamp indicating when the report generation process was completed.
urlstringDownload link for the generated report (if available, otherwise null).

This version provides more clarity on what the API does, what the fields mean, and how they relate to the report lifecycle. Let me know if you need any refinements! 🚀

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 Reports
application/json
Body

Example
[
    {
        "id": 1,
        "name": "Test Report",
        "reportType": {
            "id": 1,
            "name": "MERCHANT TRANSACTIONS REPORT",
            "featured": "true",
            "deleted": false
        },
        "status": "FAILED",
        "createdAt": "2024-07-09T12:15:31.000+00:00",
        "startedAt": "2024-07-09T12:15:54.000+00:00",
        "completedAt": "2024-07-09T12:16:25.000+00:00",
        "url": null
    }
]
Modified at 2025-03-17 22:18:40
Previous
Create Report
Next
Get Reports Details
Built with