Uganda Payouts

UGX payouts to banks and mobile wallets

Use this guide when you want to send UGX payouts to recipients in Uganda. Uganda supports bank transfers and mobile wallets (MTN).

Overview

  • Currency: UGX
  • Payment location: UGA
  • Supported rails: Bank transfer, Mobile wallet
  • Payment methods:
    • Bank transfer → paymentMethodId: "banktransfer", recipient.type: "bank_account"
    • Mobile wallet → paymentMethodId: "mobilemoney", recipient.type: "mobile_money"

Required fields by rail

Bank transfer

FieldRequiredNotes
accountNumberYesBank account number
bankCodeYesLocal bank code
accountHolderNameYesName on the account
countryYesUGA
phoneNumberNoInternational format

Mobile wallet (MTN)

FieldRequiredNotes
phoneNumberYesMSISDN in international format
countryYesUGA
operatorYesUse mtn
nameNoRecipient name

Top-level required fields for every payout: merchantId, merchantReference, destinationValue (with minorAmount and currency), paymentMethodId, paymentLocation, recipient.

Example requests

Bank transfer

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-UG-001",
4 "destinationValue": {
5 "minorAmount": 900000,
6 "currency": "UGX"
7 },
8 "paymentMethodId": "banktransfer",
9 "paymentLocation": "UGA",
10 "recipient": {
11 "type": "bank_account",
12 "accountNumber": "0123456789",
13 "bankCode": "001",
14 "accountHolderName": "Joseph Kato",
15 "country": "UGA"
16 }
17}

Mobile wallet (MTN)

1{
2 "merchantId": "your-merchant-id",
3 "merchantReference": "PAYOUT-UG-002",
4 "destinationValue": {
5 "minorAmount": 400000,
6 "currency": "UGX"
7 },
8 "paymentMethodId": "mobilemoney",
9 "paymentLocation": "UGA",
10 "recipient": {
11 "type": "mobile_money",
12 "phoneNumber": "256712345678",
13 "country": "UGA",
14 "operator": "mtn",
15 "name": "Grace Namusoke"
16 }
17}