FIB (In/Out)

Transfer via phone number (9 digits).

CountryIraq
CurrencyIQD (Iraqi dinar)
Method typefib
DirectionPayIn/PayOut
Integration typeWidget/H2H
Transfer typeTransfer via phone number
Account number format9 digits mobile number
Limits*****

PayIn request

Create PayIn (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin

{
  "amount": 250,                  // Payment amount
  "currency": "IQD",              // Currency
  "invoiceId": "invoiceId",       // Unique invoice identifier on the merchant side
  "type": "fib",                  // Method type
  "successUrl": "Google ",        // Optional (widget): URL for redirect on successful payment
  "failUrl": "Google ",           // Optional (widget): URL for redirect on failed payment
  "backUrl": "Google ",           // Optional (widget): URL for return without completing payment
  "lang": "AR"                    // Optional (widget): localization EN/AR
}

Payout request

Create PayOut (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/payout

{
    "amount": 7,                              // Payment amount
    "currencyTo": "IQD",                      // Currency
    "clientId": "clientId",                   // Unique client identifier on the merchant side
    "recipient": {                            // Recipient's information
        "account_owner": "Account Holder",    // Recipient's full name (account holder)
        "account_number": "123456789012",     // Phone number linked to recipient's account
        "type":"phone"                        // Recipient's account type
    },
    "type": "fib"                             // Method type

Did this page help you?