Transactions
Transactions
Transaction Status

Transaction Status API

Welcome to the documentation for the Transaction Status API. This API allows users to retrieve the status of a specific transaction.

Base URL

The base URL for this API is {baseURL}/v1/transaction/get_transaction_status.

Endpoint

  • Path: /:transfer_request_id
  • Method: GET

Authorization

Include the following Authorization header in your HTTP requests using a Bearer token:

Authorization: Bearer YOUR_ACCESS_TOKEN

Sample Request

curl -X GET '{baseURL}/v1/transaction/get_transaction_status/:transfer_request_id' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  -H 'accept: application/json' \
 

Sample 200 Response

{
    "message": "Status checked successfully",
    "data": {
        "is_successful": true,
        "response_message": "Failed",
        "response_code": "06",
        "reference": null,
        "status": "Failed"
    },
    "success": true
}