1. Invoice
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
      POST
    • Get Invoice Detail
      GET
    • Get Invoice Status
      GET
    • List Merchant Invoices
      GET
  • 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 Report Parameters
      • Create Report
      • Get Reports
      • Get Reports Details
  1. Invoice

Get Invoice Status

Developing
GET
/invoice/status/{invoiceReference}

Get Invoice Status#

Retrieves the current status of an invoice.
If the invoice has not yet been paid, the response contains the invoice details and payment status.
If the invoice has been paid, the response additionally includes the payment and settlement information used for reconciliation.

Path Parameters#

ParameterTypeRequiredDescription
invoiceReferenceStringYesUnique invoice reference generated during invoice creation

Example URL#


Success Response (Pending Invoice)#

HTTP Status#

Response Body#

{
  "subLedgerID": "1110028207",
  "description": "Power Vend",
  "customerEmail": "*",
  "customerName": "Irecharge-Billing Service",
  "invoiceReference": "26063019592092869587",
  "amount": 50100.00,
  "subledgergroupcode": "8RFVJ70FK4",
  "status": "Pending",
  "allocatedNuban": "1110028207",
  "expiryDate": "2026-06-30T21:59:20Z",
  "statusDate": "2026-06-30T19:59:36Z"
}

Success Response (Paid Invoice)#

HTTP Status#

Response Body#

{
  "subLedgerID": "1110034309",
  "description": "Wallet Funding By Merchant User ID: 70",
  "customerEmail": "null",
  "customerName": "Accelerate",
  "invoiceReference": "26070210021316872221",
  "amount": 100.00,
  "subledgergroupcode": "8RFVJ70FK4",
  "status": "Paid",
  "allocatedNuban": "1110034309",
  "sourceAccountNumber": "5598521572",
  "sourceAccountName": "iRecharge Tech-Innovations Limited",
  "sourceAccountBank": "OneUtility MFB (Madobi MFB)",
  "destinationAccountNumber": "1110034309",
  "destinationAccountName": "Accelerate",
  "destinationAccountBank": "OneUtility MFB (Madobi MFB)",
  "sessionID": "100004260702100321164194478671",
  "transactionReference": "100004260702100321164194478671",
  "expiryDate": "2026-07-02T12:02:13Z",
  "statusDate": "2026-07-02T10:02:14Z",
  "createdDate": "2026-07-02T10:02:14Z"
}

Response Parameters#

FieldTypeDescription
subLedgerIDStringIdentifier of the invoice sub-ledger account
descriptionStringDescription of the invoice or payment purpose
customerEmailStringCustomer email address (may be masked or null)
customerNameStringName of the customer associated with the invoice
invoiceReferenceStringUnique invoice reference
amountDecimalInvoice amount
subledgergroupcodeStringInternal sub-ledger grouping code
statusStringCurrent invoice status
allocatedNubanStringVirtual account (NUBAN) allocated to the invoice
expiryDateString (ISO 8601)Date and time when the invoice expires
statusDateString (ISO 8601)Date and time when the current status was recorded

Additional Fields Returned for Paid Invoices#

FieldTypeDescription
sourceAccountNumberStringBank account from which payment originated
sourceAccountNameStringName of the payer's account
sourceAccountBankStringBank of the payer's account
destinationAccountNumberStringVirtual account credited
destinationAccountNameStringName on the destination account
destinationAccountBankStringBank hosting the destination account
sessionIDStringNIP session identifier for the payment transaction
transactionReferenceStringUnique transaction reference
createdDateString (ISO 8601)Timestamp when the payment transaction was created

Possible Status Values#

StatusDescription
PendingInvoice has been generated but payment has not yet been received.
PaidPayment has been received and transaction details are available.

Example Request#


Notes#

A Pending response indicates that payment has not yet been received or confirmed.
Once the invoice status changes to Paid, additional payment and settlement information is included in the response.
The transactionReference and sessionID can be used for transaction reconciliation and support investigations.
The invoice cannot receive payments after its expiryDate.

Request

Path Params

Request Code 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 '/invoice/status/'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{}
Modified at 2026-07-02 12:34:45
Previous
Get Invoice Detail
Next
List Merchant Invoices
Built with