Deposit Funds
Deposit funds from your main account to a wallet
Deposit Funds
POST
https://sandbox.temboplus.com/tembo/v1/transaction/deposit
Transfers money from your main account to a wallet. Please note that it is not possible to transfer money to a wallet of different currency.
Headers
Name
Type
Description
x-account-id*
string
Partner account id
x-secret-key*
string
Partner secret key
x-request-id*
string
A unique id identifying this request
Request Body
Name
Type
Description
amount*
number
Amount to be deposited to a wallet
accountNo*
string
Account number of the wallet to deposit money to
transactionDate*
date string
The date of the transaction in the YYYY-MM-DD format
narration*
string
Narration for this transaction
externalRefNo*
string
External reference to be associated with this transaction
{
"paymentRef":"",
"transactionId":"TEMBO-001",
"transactionRef":"TEMBO-001"
}
curl --request POST \
--url https://sandbox.temboplus.com/tembo/v1/transaction/deposit \
--header 'content-type: application/json' \
--header 'x-account-id: ff6IfxxVceIMM6oFAc9Zig' \
--header 'x-secret-key: HYX5X4is3a4bnJJo4lXM936bFD6B8iMeAtXijNvHXMI==' \
--header 'x-request-id: 546d7a200cd8cb45d8ac' \
--data '{
"amount": 1000,
"accountNo": "70089773",
"externalRefNo": "TEMBO-CUSTOMER-003",
"narration": "Customer refund for transaction TNX-499483",
"transactionDate": "2022-11-30"
}'
Last updated