The destination sub-ledger account that received the credit (toAccountID).
classificationCode
string
The classification code associated with the transfer transaction.
amount
decimal
The transferred amount.
narration
string
A description or note regarding the transfer.
transactionReference
string
A unique reference identifier generated for the transaction.
transactionType
string
Indicates the type of transaction; will be "CREDIT" for this operation.
success
boolean
Confirms whether the transfer was successfully processed.
traceID
string
A unique tracking identifier for the transaction.
transactionTime
string
The timestamp when the transaction was processed.
Request
Body Params application/json
Example
{"fromAccountID":"4000000178","toAccountID":"4000000192","classificationCode":"0","amount":7,"narration":"SubLedger Transfer Test"}
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 POST '/transfer/intra' \
--header'Content-Type: application/json' \
--data-raw'{
"fromAccountID":"4000000178",
"toAccountID":"4000000192",
"classificationCode":"0",
"amount":7,
"narration":"SubLedger Transfer Test"
}'
Responses
🟢200Intrabank Transfer
application/json
Body
Example
{"transactionType":"CREDIT","amount":7,"narration":"SubLedger Transfer Test - SL TRANSFER CREDIT","classificationCode":"0","success":true,"traceID":"37e19a43-2c76-48df-b228-ab6ef1813cc5","transactionReference":"4-SL-TRSF-CRDT","accountID":"4000000192","transactionTime":"2023-09-11T03:16:03.839+00:00"}