Uganda Beneficiary
Payouts to Uganda are made via mobile money (MTN or AIRTEL).
Below is a sample request for creating an Ugandan beneficiary:
cURL
curl --location '{{sandboxURL}}/beneficiaries' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{APIKEY}}' \
--data '{
"reference": "<samplereference>",
"customerEmail": "ray.jon@mail.com",
"country": "UG",
"currency": "UGX",
"callbackUrl": "https://webhook.site/38a9e6b0-3388-4399-89d4-3ceafa000001",
"destination": {
"network": "MTN"
"type": "MOBILEMONEY",
"accountNumber": "256775379021",
"accountName": "Jon Snow",
}
}
'
Parameter | Description | Required |
---|---|---|
type | This is the payment type. It will be MOBILEMONEY | ✅ |
accountNumber | This is the phone number of the beneficiary | ✅ |
accountName | This is the name of the beneficiary (must contain their first and last names) | ✅ |
network | The phone number's mobile network, (MTN / AIRTEL) | ✅ |