Rwanda payout
Payment Account Types
The supported payment account types in Rwanda are:
- MOBILE_MONEY
- BANK_ACCOUNT
Mobile Money
The supported mobile money operators in Rwanda are:
- AIRTEL
- MTN
Bank Account
We support payouts to various banks in Rwanda. To retrieve the most current list of supported banks, use the List Banks endpoint.
Decimal Requirements
| Payment Account Type | Decimals Allowed |
|---|---|
| MOBILE_MONEY (AIRTEL) | 0 |
| MOBILE_MONEY (MTN) | 0 |
| BANK_ACCOUNT | 0 |
Transaction Limits
| Payment Account Type | Minimum Amount (RWF) | Maximum Amount (RWF) |
|---|---|---|
| MOBILE_MONEY (AIRTEL) | 100 | 500,000 |
| MOBILE_MONEY (MTN) | 100 | 2,000,000 |
| BANK_ACCOUNT | 1,000 | 8,000,000 |
Compliance Requirements
| Field | Requirements |
|---|---|
| sender.type | Required |
| sender.name | Required |
| sender.address.line1 | Required |
| sender.address.city | Required |
| sender.address.postal_code | Required |
| sender.address.country | Required |
| sender.individual.dob | Required (with type INDIVIDUAL) |
| sender.individual.identity_document.type | Required (with type INDIVIDUAL) |
| sender.individual.identity_document.country | Required (with type INDIVIDUAL) |
| sender.individual.identity_document.number | Required (with type INDIVIDUAL) |
| sender.individual.identity_document.expires_on | Required (with type INDIVIDUAL) |
Sample Payload
The samples below are specific to Rwanda and based on the local regulations.
For a more comprehensive list of fields, see the Create Payout resource.
{
"amount": {
"currency": "RWF",
"value": "5000"
},
"payment_account": {
"type": "MOBILE_MONEY",
"country": "RW",
"holder": {
"type": "INDIVIDUAL",
"name": "Eric Niyonzima"
},
"mobile_money": {
"operator": "AIRTEL",
"number": "+250781234567"
}
},
"sender": {
"type": "INDIVIDUAL",
"name": "Mario Rossi",
"address": {
"line_1": "Piazza del Colosseo",
"line_2": "1",
"line_3": "",
"city": "Roma",
"postal_code": "00184",
"country": "IT"
},
"individual": {
"dob": "1985-06-15",
"identity_document": {
"type": "PASSPORT",
"country": "IT",
"number": "YA0000000",
"expires_on": "2030-01-01"
}
}
}
}Updated 2 days ago
