m10 (in/out)
Transfer via m10 (mobile number).
Country | Azerbaijan |
---|---|
Currency | AZN (Azerbaijani Manat) |
Method type | m10 |
Direction | Pay-in/Payout |
Integration type | Widget/H2H |
Transfer type | Transfer via m10 (mobile number) |
Account number format | 12-digit mobile number |
Limits | 6 - 2 500 AZN |

Create Pay-in (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin
{
"amount": 1000, // Payment amount
"currency": "AZN", // Currency
"invoiceId": "invoiceID", // Unique invoice identifier on the merchant side
"clientId": "clientID", // Unique client identifier on the merchant side
"type": "m10", // Method type
"clientCard": "payer's bank card/phone", // Optional: payer's bank card mask or mobile number
"clientName": "payer's full name", // Optional: payer's full name
"successUrl": "https://example.com/success", // Optional (widget): URL for redirect on successful payment
"failUrl": "https://example.com/fail", // Optional (widget): URL for redirect on failed payment
"backUrl": "https://example.com/back", // Optional (widget): URL for return without completing payment
"lang": "AZ" // Optional (widget): localization EN/RU
}
Create Payout (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/payout
{
"amount": 1000, // Payout amount
"currencyTo": "AZN", // Currency
"invoiceId": "invoiceID", // Unique invoice identifier on the merchant side
"clientId": "clientID", // Unique client identifier on the merchant side
"baseCurrency": "fiat", // Base currency type (fiat, crypto)
"feesStrategy": "add", // Fees handling strategy (add, sub)
"recipient": { // Recipient information
"account_number": "994123456789123", // Mobile number linked to recipient's account
"account_owner": "Account Holder", // Recipient's full name (account holder)
"type": "phone" // Recipient account type
}
}
Updated 24 days ago