Virtual Account Services
  1. Refunds
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
      POST
    • Get Refund Status
      GET
    • Get Refunds
      GET
  • 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. Refunds

Get Refund Status

GET
/va/refunds/{refundReference}
This API retrieves the status of a refund based on the refundReference provided in the URL. The response indicates whether the request was successful and returns detailed information about the refund.

Path Parameters#

Field NameTypeRequiredDescription
refundReferencestringTRUEThe unique refund reference provided in the URL.

Response Body#

Field NameTypeDescription
requestSuccessfulbooleanIndicates whether the refund status request was successful.
responseMessagestringA message describing the outcome of the refund status request.
responseCodestringA code representing the result of the refund status request.
responseBodyobjectAn object containing detailed refund information.

Refund Details (responseBody)#

Field NameTypeDescription
transactionReferencestringThe reference for the original transaction associated with the refund.
refundReferencestringThe unique reference for the refund.
refundAmountnumberThe amount refunded.
refundReasonstringThe reason for the refund (e.g., "Order cancelled!").
customerNotestringAn optional note provided by the customer regarding the refund.
refundTypestringThe type of refund (e.g., "PARTIAL_REFUND").
refundStatusstringThe current status of the refund (e.g., "COMPLETED").
refundStrategystringThe strategy used for processing the refund (e.g., "MERCHANT_WALLET").
commentstringAdditional comments regarding the refund.
completedOnstringThe timestamp when the refund was completed.
createdOnstringThe timestamp when the refund record was created.

Request

Path Params

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 '/va/refunds/909090911'

Responses

🟢200Get Refund Status
application/json
Body

Example
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "transactionReference": "000012240124191535300537886000",
        "refundReference": "909090911",
        "refundAmount": 10,
        "refundReason": "Order cancelled!",
        "customerNote": "An optional note",
        "refundType": "PARTIAL_REFUND",
        "refundStatus": "COMPLETED",
        "refundStrategy": "MERCHANT_WALLET",
        "comment": "Transaction refund is in progress.",
        "completedOn": "25/01/2024 01:39:12 AM",
        "createdOn": "25/01/2024 01:35:27 AM"
    }
}
Modified at 2025-03-17 22:17:22
Previous
Initiate Refund
Next
Get Refunds
Built with