1. Business Accounts
Vrtx Docs
  • Auth
    • Token
      POST
  • Onboarding
    • Start onboarding
      POST
    • Verify onboarding OTP
      POST
    • Resend onboarding OTP
      POST
    • Get session status
      GET
    • Initiate Nafath
      POST
    • Cancels session
      POST
    • Complete customer info
      POST
  • Webhooks
    • Process Nafath webhook
      POST
    • Process Faceki webhook
      POST
    • Process T2 webhook
      POST
  • Wallet
    • Change mobile number from profile settings
      • Change mobile number
      • Verify mobile number change OTP
      • Get mobile change status
    • Change mobile number from login screen
      • Change mobile number
      • Verify mobile number change OTP
      • Initiate Nafath
      • Get mobile number change status
  • Businesses
    • Create business
      POST
  • Transactions
    • Business Accounts
      • Get business account balance
        GET
      • Get transaction details
        GET
      • List business transactions
        GET
    • Wallet Accounts
      • Get wallet balance
      • List wallet transactions
  • Payouts
    • Create payout
      POST
    • Get payout status
      GET
    • Create bulk payout
      POST
    • Get bulk payout status
      GET
    • Get batch report
      GET
  • Cards
    • Issuance
      • Issue card
      • Get card issuance
      • Complete card issuance
      • Verify card issuance OTP
      • Convert virtual to physical
      • Verify card conversion OTP
    • Management
      • Get card
      • Change card status
      • Set or update card PIN
      • Verify card PIN OTP
      • Activate physical card
      • Verify activation OTP
      • Display sensitive data
      • Verify display sensitive data OTP
  • cards
    • Initiate card replacement
    • Verify OTP and complete card replacement
Open-Loop-v2Closed-loop V2Card Simulatoropen-loop-test
Open-Loop-v2Closed-loop V2Card Simulatoropen-loop-test
  1. Business Accounts

Get transaction details

GET
/businesses/accounts/{account_id}/transactions/{transaction_id}
Last modified:2025-12-02 10:06:51
Retrieves detailed information about a specific fund or payout transaction.
This endpoint returns comprehensive transaction details including:
Transaction identifiers and type (fund/payout)
Financial information (amount, balance, direction)
Transaction parties (sender/receiver)
Type-specific fields (description for payouts, reference number for funds)
Timestamps and audit information
Transaction Types:
Prefund: Money coming into business account from bank (credit)
M2P_Payout: Money going out from business to individual wallet (debit)
Error Scenarios:
403: Unauthorized access to transaction (transaction doesn't belong to account)
404: Transaction or account not found

Request

Path Params

Responses

🟢200Success
application/json
Default Response
Body

đźź 400400
đźź 401401
đźź 403403
đźź 404404
đźź 405405
đźź 409409
đźź 410410
đźź 422422
đźź 429429
đź”´500500
đź”´501501
đź”´503503
đź”´504504
đź”´505505
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/businesses/accounts//transactions/'
Response Response Example
200 - Example 1
{
    "transaction_id": "string",
    "transaction_type": "fund",
    "sender_id": "string",
    "receiver_id": "string",
    "amount": "string",
    "balance": "string",
    "direction": "debit",
    "currency": "SAR",
    "created_at": "2019-08-24T14:15:22.123Z",
    "description": "string",
    "transaction_reference": "string",
    "status": "Approved",
    "auth_status": "PENDING",
    "merchant": {
        "name": "string",
        "mcc": "string",
        "category": "string",
        "country": "string"
    },
    "network": "string",
    "rrn": "string",
    "terminal_id": "string"
}
Modified at 2025-12-02 10:06:51
Previous
Get business account balance
Next
List business transactions
Built with