Transfers

Transfer funds between accounts. See below an example of the payload that will be expected by the server.

Wallet Transfer

POST https://sandbox.temboplus.com/tembo/v1/transaction/transfer

Transfers money from one wallet to another

Headers

Request Body

{
   "paymentRef":"",
   "transactionId":"TEMBO-001",
   "transactionRef":"TEMBO-001"
}
curl --request POST \
--url https://sandbox.temboplus.com/tembo/v1/transaction/transfer \
--header 'content-type: application/json' \
--header 'x-account-id: ff6IfxxVceIMM6oFAc9Zig' \
--header 'x-secret-key: HYX5X4is3a4bnJJo4lXM936bFD6B8iMeAtXijNvHXMI==' \
--header 'x-request-id: 546d7a200cd8cb45d8ac' \
--data  '{
          "amount":10000,
          "fromAccountNo": "70089773"
          "toAccountNo": "70089004",
          "externalRefNo":"TEMBO-CUSTOMER-004",
          "narration":"Integration Test...",
          "transactionDate":"2022-11-30"
     }'

Last updated