Fiuu
Quick Start
- Sign up at fiuu.com and obtain API credentials
- Create a terminal in the Admin Console with the parameters below
- Start processing — the adapter is pre-built and ready to use
Overview
Fiuu (previously MOLPay) — Payments (payment gateway for SEA region)
| Provider ID | fiuu |
| Category | Card Processors |
| Website | fiuu.com |
Supported operations: Purchase (payments_authorize) Refund (refund) Void (payments_void)
Authentication
Method: MD5 Signature
Algorithm signing:
For requests is formed MD5 hash from parameters:
signature = md5(amount + merchant_id + order_id + verify_key)
Example:
amount: 100.50
merchant_id: molpay_test
order_id: ORDER123
verify_key: abcdef123456
MD5("100.50molpay_testORDER123abcdef123456") = "a1b2c3d4e5f6..."
Transmitted in request:
{
"amount": "100.50",
"merchant_id": "molpay_test",
"order_id": "ORDER123",
"vcode": "a1b2c3d4e5f6..."
}
Configuration
Required Parameters
| Parameter | Description |
|---|---|
merchant_id | Merchant ID |
verify_key | Verification Key for signing |
api_key | API Key for requests |
Status Mapping
| Provider Status | 4pay Status | Description |
|---|---|---|
00 | Charged | Payment successful |
11 | Failure | Failed payment |
22 | Pending | Payment processing |
33 | Voided | Payment cancelled |
00 | Success | |
11 | Failure | |
22 | Pending |