ELQR (in) new
Bank transfer (via client ID, phone number, or bank number).
Country | Kyrgyzstan |
---|---|
Currency | KGS (Kyrgyzstani Som) |
Method type | p2p |
Direction | Pay-in |
Integration type | Widget |
Transfer type | Bank transfer (via client ID, phone number, or bank number) |
Account number format | Bank account number |
Limits | 300 - 150 000 KGS |
1. Payment Flow
-
Open widget on merchant page
-
Mobile: bank selected, opened on mobile device, “Proceed to payment”** button → tapping opens banking app via deep link
-
Desktop: show a QR code + instructions → user scans with mobile banking app
-
User confirms the payment in their banking app.
-
Widget redirects user to your
successUrl
orfailUrl
.
2) Integration Options
2.1 Multi-widget (User selects bank)
Let users pick their bank from a list.
Request Example
{
"amount": 100,
"currency": "KGS",
"invoiceId": "YOUR_INVOICE_ID",
"clientId": "YOUR_CLIENT_ID",
"lang": "RU",
"successUrl": "https://example.com/success",
"failUrl": "https://example.com/fail",
"backUrl": "https://example.com/back",
"multiWidgetOptions": {
"elqrBanks": ["mbank", "bakai", "kicb"]
},
"type": "elqr"
}
Response Example:
{
"id": "3730d2bc-61fc-4e29-8a04-d2d81c19a26d",
"status": "new",
"type": "elqr",
"url": "https\://widget.example.com/3730d2bc-61fc-4e29-8a04-d2d81c19a26d"
}
2.2 Predefined-bank (Merchant selects bank)
Predefined: the merchant selects the bank, and the user will only see the payment method through the selected bank.
Request Example:
{
"amount": 100,
"currency": "KGS",
"invoiceId": "YOUR_INVOICE_ID",
"clientId": "YOUR_CLIENT_ID",
"lang": "RU",
"successUrl": "https://example.com/success",
"failUrl": "https://example.com/fail",
"backUrl": "https://example.com/back",
"multiWidgetOptions": {
"elqrBanks": ["bakai"]
},
"type": "elqr"
}
Response Example:
{
"id": "3730d2bc-61fc-4e29-8a04-d2d81c19a26d",
"status": "new",
"type": "elqr",
"url": "https://widget.example.com/3730d2bc-61fc-4e29-8a04-d2d81c19a26d"
}
2.3 Bank Aliases
Use these values in multiWidgetOptions.elqrBanks
:
bakai, mbank, kicb, odengi, demir, megapay
Feel free to reach out to our support team if you have any questions or need assistance!
Updated 24 days ago