API
  • Introduction
  • Authentication
  • Error Handling
  • API ENDPOINTS
    • Payment
    • Invoices
      • Create Invoice
      • Re-send Invoice
      • Get Invoice - customerEmail
      • Get Invoice - invoiceNo
      • Get Invoice - orderNo
    • Payment Link
      • Create Link
      • Get Link
      • Update Link
      • Delete Link
    • Charge Token
      • Create Token
      • Get Token
      • Charge Token
      • Bulk Charge
      • Query Bulk Charge with BacthId
    • Subscriptions
      • Create Subscription
      • Charge Subscription
      • Get Customer Subscription
      • Update Customer Subscription
      • Get Merchant Subscription
    • Virtual Account
      • Create Virtual Account
      • Get Virtual Account
      • Delete Virtual Account
      • Get Payment
    • Pay with Transfer
    • Pay with USSD
    • Mobile Money Payments
    • Bank Account Payments
    • Card Payment
      • Initializing a Card Payment
      • Scenario 1 (Verve Card Type)
      • Scenario 2 (Master Card and Visa Card Type)
      • Scenario 3
Powered by GitBook
On this page
  1. API ENDPOINTS
  2. Virtual Account

Get Virtual Account

Fetch a virtual account using reference

/vitrual-accounts/reference

GET https://seerbitapi.com/api/v2/virtual-accounts/{{paymentreference}}

This endpoint allows you to fetch a virtual account using the unique reference

Path Parameters

Name
Type
Description

reference*

String

unique reference to identify the virtual account

Headers

Name
Type
Description

authorization*

String

Bearer token

{
    "status": "SUCCESS",
    "data": {
        "code": "00",
        "payments": {
            "reference": "VA_1", // virtual account reference
            "linkingReference": "9PSB641860391656618499020",
             "walletName": "SEERBIT(Business Name)",
            "wallet": "Account Number",
            "bankName": "_9PAYMENT_SERVICE_BANK",
            "accountNumber": "Account Number"
        },
        "message": ""
    }
}
PreviousCreate Virtual AccountNextDelete Virtual Account

Last updated 9 months ago