GET
/
banking
/
v1
/
us
/
transactions
/
{id}
/
records
{
  "id": "<string>",
  "type": "transfer",
  "status": "pending",
  "amount": "<string>",
  "opening_balance": "<string>",
  "balance_after_transaction": "<string>",
  "account": "<string>",
  "currency": {
    "id": "<string>",
    "name": "<string>",
    "code": "<string>",
    "symbol": "<string>"
  },
  "reference": "<string>",
  "receipient": [
    {
      "id": "<string>",
      "name": "<string>",
      "bank_code": "<string>",
      "bank_name": "<string>",
      "account_number": "<string>",
      "amount": "<string>"
    }
  ],
  "narration": "<string>",
  "direction": "Outbound",
  "client_identifier": "<string>",
  "trace_number": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

api-key
string
header
required

Path Parameters

id
string
required

A unique value identifying this transaction.

Response

200 - application/json
id
string
required
amount
string
required
account
string
required

Bank Account Used for th Transaction

currency
object
required
receipient
object[]
required
created_at
string
required
updated_at
string
required
type

Indicator of the type of transaction

  • transfer - transfer
  • deposit - deposit
  • swap - swap
  • bulk_transfer - bulk_transfer
  • subscription - subscription
Available options:
transfer,
deposit,
swap,
bulk_transfer,
subscription
status
  • pending - pending
  • success - success
  • failed - failed
Available options:
pending,
success,
failed
opening_balance
string
balance_after_transaction
string
reference
string | null
narration
string | null

Narration Supplied when making the transaction, in US tranaction is called purpose

Maximum length: 255
direction
  • Outbound - Outbound
  • Inbound - Inbound
  • Internal - Internal
Available options:
Outbound,
Inbound,
Internal
client_identifier
string | null
trace_number
string | null