1. 6. Payment Providers (PSPs)
Mozarto - The Payments Orchestration Platform
  • 1. Introduction
  • 2. Quick Start
  • 3. Authentication
  • 4. Errors
  • 5. Redirect flow
    • Pay-In Flow
    • Pay-Out Flow
    • Webhook Setup
  • 6. Payment Providers (PSPs)
    • Overview
    • Brite
    • Cleo
    • Flexepin
    • ForumPay
    • Gigadat
    • Neosurf
    • Payone
    • Trust Payments
    • WorldPay
  • 7. Redirect Flow APIs
    • PayIn
      • Forumpay
      • Payone
    • PayOut
      • Forumpay
      • Payone
  • Schemas
    • TransactionData
  1. 6. Payment Providers (PSPs)

Flexepin

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)#

FieldDescription
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#

FieldTypeDescription
pspType *stringAlways "FLEXEPIN"
type *stringAlways "PAYIN"
voucherPin *stringThe Flexepin voucher PIN entered by the user
baseamount *numberAmount to redeem as a number (e.g. 25.00)
currency *stringCurrency code (e.g. "EUR")
currencyCode *stringCurrency code
userId *stringYour internal user/player identifier
email *stringUser's email address
brandIdstringBrand 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
Previous
Cleo
Next
ForumPay
Built with