Uganda
Transfer funds to Ugandan bank accounts.
Send UGX directly to bank accounts in Uganda. This guide walks you through the steps required to initiate and verify a transfer.
Prerequisites
- Complete KYC and ensure your account is approved for transactions.
- Whitelist your server IP addresses. See this guide for more information.
- Enable Transfers via API. See this guide for more information.
- Ensure your balance has sufficient funds. If needed, you can debit an alternate balance. See supported currencies for UGX transfers.
Payout Flow
Follow these steps to send money to a bank account in Uganda.
- Collect the beneficiary details
Gather the beneficiary's name, bank, branch, and account number.
See the table below for the required and optional parameters.
| Parameter | Description | Format | Example | Isrequired |
|---|---|---|---|---|
account_bank | The beneficiary's bank code. Use the Get Banks endpoint to retrieve the bank code. | String | "UG05000" | Yes |
account_number | The beneficiary's account number. | String | "01411152613057" | Yes |
beneficiary_name | The beneficiary's full name. | String | "Catherine Ampaire" | Yes |
amount | The amount to send. | Integer | 350 | Yes |
currency | The transfer currency. Must be UGX. | String | "UGX" | Yes |
destination_branch_code | The beneficiary bank's branch code. Use the Get Branches endpoint to retrieve the branch code. | String | "UG54641" | Yes |
debit_currency | The wallet currency to debit for the transfer. | String | "XOF" | No |
narration | A description for the transfer. | String | "Uganda Withdrawal" | No |
reference | Unique reference to identify the transfer. | String | "Your-Unique-Reference" | No |
- Initiate the transfer
Send aPOSTrequest to the transfer endpoint with the beneficiary and transfer details.
curl --request POST \
--url https://api.flutterwave.com/v3/transfers \
--header 'Authorization: Bearer {{YOUR_SECRET_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
"amount": 1000,
"account_bank": "UG05000",
"account_number": "01411152613057",
"destination_branch_code": "UG54641",
"currency": "UGX",
"beneficiary_name": "Catherine Ampaire",
"debit_currency": "XAF",
"narration": "Uganda withdrawal",
"reference": "STkKkrMRF_k5kdHkkY3_PMCKDU_1"
}'
{
"status": "success",
"message": "Transfer Queued Successfully",
"data": {
"id": 2241395,
"account_number": "01411152613057",
"bank_code": "UG05000",
"full_name": "Catherine Ampaire",
"created_at": "2026-09-17T14:41:03.000Z",
"currency": "UGX",
"debit_currency": "XAF",
"amount": 1000,
"fee": 5000,
"status": "NEW",
"reference": "STkKkrMRF_k5kdHkkY3_PMCKDU_1",
"meta": null,
"narration": "Uganda withdrawal",
"complete_message": "",
"requires_approval": 0,
"is_approved": 1,
"bank_name": "DFCU Bank"
}
}
- Verify the transfer status
There are two ways to verify the transfer status:
- Call the transfer status endpoint using the transfer ID (
data.id) returned in the transfer response.
curl --request GET \
--location 'https://api.flutterwave.com/v3/transfers/2241395' \
--header 'Authorization: Bearer {{YOUR_SECRET_KEY}}'
{
"status": "success",
"message": "Transfer fetched",
"data": {
"id": 2241395,
"account_number": "01411152613057",
"bank_code": "UG05000",
"full_name": "Catherine Ampaire",
"created_at": "2026-09-17T14:41:03.000Z",
"currency": "UGX",
"debit_currency": "XAF",
"amount": 1000,
"fee": 5000,
"status": "SUCCESSFUL",
"reference": "STkKkrMRF_k5kdHkkY3_PMCKDU_1",
"meta": null,
"narration": "Uganda withdrawal",
"approver": null,
"complete_message": "Successful",
"requires_approval": 0,
"is_approved": 1,
"bank_name": "DFCU Bank"
}
}
- Listen for webhooks. Configure your webhook URL on the Flutterwave Dashboard to receive real-time transfer updates. See the webhooks guide for more information.
{
"event": "transfer.completed",
"event.type": "Transfer",
"data": {
"id": 2241395,
"account_number": "01411152613057",
"bank_name": "DFCU Bank",
"bank_code": "UG05000",
"fullname": "Catherine Ampaire",
"created_at": "2026-09-17T14:41:03.000Z",
"currency": "UGX",
"debit_currency": "XAF",
"amount": 1000,
"fee": 5000,
"status": "SUCCESSFUL",
"reference": "STkKkrMRF_k5kdHkkY3_PMCKDU_1",
"meta": null,
"narration": "Uganda withdrawal",
"approver": null,
"complete_message": "Successful",
"requires_approval": 0,
"is_approved": 1
}
}
Testing Transfers
Check the testing guide for mocking transfers in the test environment.
Updated 3 days ago
Did this page help you?
