Overview:
Mobile Money (XOF) supports payouts to mobile wallets in West African countries such as Benin, Côte d'Ivoire, Togo, and Burkina Faso
Required Fields:
| Field | Type | Requirement Level | Description |
|---|---|---|---|
amount | number | Required | Amount in the local currency |
currency | string | Required | XOF |
method_code | string | Required | "MOBILE_MONEY_XOF" |
recipient.wallet_uid | string | Required | Recipient’s mobile number |
recipient.full_name | string | Required | Recipient’s full name |
bank.code | string | Required | Recipient’s Bank code |
reference | string | Required | Merchant reference |
metadata | object | Optional | Merchant metadata |
webhook_url | string | Optional | HTTPS URL for notifications |
sender.full_name | string | Optional | Sender's full name |
sender.address | string | Optional | Sender's address |
sender.phone | string | Optional | Sender's phone number |
Sample Payload:
{
"amount": 100,
"currency": "XOF",
"method_code": "MOBILE_MONEY_XOF",
"recipient": {
"wallet_uid": "254XXXXXXXXX",
"full_name": "Firstname Surname",
},
"bank": {
"code": "90001",
},
"reference": "INV-2025-001",
"metadata": {
"internal_id": "user1234"
},
"webhook_url": "https://yourwebsite.com/webhook",
"sender": {
"full_name": "Firstname Surname",
"address": "No 2, Green Median Str"
}
}
