Flexepin#
Prepaid voucher payment method. Users pay using a Flexepin voucher PIN - no bank account or card required.Operations: Pay-In ✓ | Pay-Out - | Webhook -
Processing: Synchronous voucher redemption
Payment type: Prepaid voucher (PIN-based)Fields marked with * are required.
Configuration (Mozarto back office)#
| Field | Description |
|---|
username * | Flexepin API username |
password * | Flexepin API password |
merchantId * | Your Flexepin merchant ID |
Pay-In#
POST /v1/api/mozarto/cashier
The user enters their Flexepin voucher PIN in your cashier before you call this endpoint.Request body#
| Field | Type | Description |
|---|
pspType * | string | Always "FLEXEPIN" |
type * | string | Always "PAYIN" |
voucherPin * | string | The Flexepin voucher PIN entered by the user |
baseamount * | number | Amount to redeem as a number (e.g. 25.00) |
currency * | string | Currency code (e.g. "EUR") |
currencyCode * | string | Currency code |
userId * | string | Your internal user/player identifier |
email * | string | User's email address |
brandId | string | Brand identifier |
Example request#
{
"pspType": "FLEXEPIN",
"type": "PAYIN",
"voucherPin": "1234567890123456",
"baseamount": 25.00,
"currency": "EUR",
"currencyCode": "EUR",
"userId": "user_123",
"email": "player@example.com"
}
Response#
{
"status": "success",
"isSuccess": true,
"data": {
"status": "PENDING",
"sessionId": "60a74038-5b94-427e-8cff-abc123"
}
}
Flexepin does not support webhooks. The API response is the final result for this transaction.
Modified at 2026-05-08 07:48:21