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

  1. Complete KYC and ensure your account is approved for transactions.
  2. Whitelist your server IP addresses. See this guide for more information.
  3. Enable Transfers via API. See this guide for more information.
  4. 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.

  1. Collect the beneficiary details
    Gather the beneficiary's name, bank, branch, and account number.

See the table below for the required and optional parameters.

ParameterDescriptionFormatExampleIsrequired
account_bankThe beneficiary's bank code. Use the Get Banks endpoint to retrieve the bank code.String"UG05000"Yes
account_numberThe beneficiary's account number.String"01411152613057"Yes
beneficiary_nameThe beneficiary's full name.String"Catherine Ampaire"Yes
amountThe amount to send.Integer350Yes
currencyThe transfer currency. Must be UGX.String"UGX"Yes
destination_branch_codeThe beneficiary bank's branch code. Use the Get Branches endpoint to retrieve the branch code.String"UG54641"Yes
debit_currencyThe wallet currency to debit for the transfer.String"XOF"No
narrationA description for the transfer.String"Uganda Withdrawal"No
referenceUnique reference to identify the transfer.String"Your-Unique-Reference"No
  1. Initiate the transfer
    Send a POST request 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"
    }
}
  1. Verify the transfer status
    There are two ways to verify the transfer status:
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.


Did this page help you?