Overview:
MBANK is a leading digital wallet and mobile banking platform in Kyrgyzstan. It supports instant payouts to registered users using their mobile numbers linked to MBANK accounts.
Required Fields:
| Field | Type | Requirement Level | Description |
|---|---|---|---|
amount | number | Required | Amount in KGS |
currency | string | Required | "KGS" |
method_code | string | Required | "MBANK" |
recipient.phone | string | Required | Recipient’s Mbank phone number |
recipient.full_name | string | Required | Recipient’s full name |
reference | string | Required | Merchant transaction reference |
metadata | object | Optional | Merchant metadata |
webhook_url | string | Optional | HTTPS URL for webhook 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": 500,
"currency": "KGS",
"method_code": "CASH_PLUS",
"recipient": {
"phone": "+996700123456",
"full_name": "Firstname Surname"
},
"reference": "INV-2025-002",
"metadata": {
"internal_id": "user5678"
},
"webhook_url": "https://yourwebsite.com/webhook",
"sender": {
"full_name": "Firstname Surname",
"address": "No 2, Green Median Str"
}
}
