Overview
Customers
Funding Sources
Cards
Accounts
Authorizations
Transactions
Accounts
Fund Transfer
Transfers funds from one account, wallet, or card to another.
POST
/
accounts
/
transfer
curl --request POST \
--url https://api.sandbox.sudo.cards/accounts/transfer \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"debitAccountId": "<string>",
"creditAccountId": "<string>",
"beneficiaryBankCode": "<string>",
"beneficiaryAccountNumber": "<string>",
"amount": 123,
"narration": "<string>",
"paymentReference": "<string>"
}'
"{}"
Authorizations
Body
application/json
Response
200
application/json
200
The response is of type object
.
curl --request POST \
--url https://api.sandbox.sudo.cards/accounts/transfer \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"debitAccountId": "<string>",
"creditAccountId": "<string>",
"beneficiaryBankCode": "<string>",
"beneficiaryAccountNumber": "<string>",
"amount": 123,
"narration": "<string>",
"paymentReference": "<string>"
}'
"{}"
Assistant
Responses are generated using AI and may contain mistakes.