Etisalat

Transfer via phone number (11 digits, starts with 011).

CountryEgypt
CurrencyEGP
Method typeetisalat
DirectionPayIn/PayOut
Integration typeH2H
Transfer typeTransfer via Etisalat
Account number format11-digits phone number, starts with 011

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

{
  "amount": 25,                                   // Payment amount
  "currency": "EGP",                              // Currency
  "invoiceId": "invoiceId",                       // Unique invoice identifier on the merchant side
  "clientId": "clientId",                         // Unique client identifier on the merchant side
  "type": "etisalat",                             // Method type
  "backUrl": "https://www.google.com/",           // Optional (widget): URL for return without                                                              completing payment
  "lang": "EN"                                    // Optional (widget): localization EN/AR
}        

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

{
    "amount": 25,                                  // Payment amount
    "currencyTo": "EGP",                           // 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": "12345678901",           // Phone number linked to recipient's account
        "type":"phone"                             // Recipient's account type
    },
    "type": "etisalat"                             // Method type
}

Did this page help you?