Pakistan payout

🧪

The Pakistan corridor is still in beta so you might notice occasional instability as we fine-tune things. We’ll be rolling out updates regularly and your feedback is invaluable in helping us get it right!

Payment Account Types

The supported payment account types in Pakistan are:

  • MOBILE_MONEY
  • BANK_ACCOUNT

Mobile Money

The supported mobile money operators in Pakistan are:

  • EASYPAISA
  • JAZZCASH
  • UPAISA
  • SADAPAY
  • NAYAPAY
  • FINJA
  • PAYMAX

Bank Account

We support payouts to various banks in Pakistan. To retrieve the most current list of supported banks, use the list banks endpoint.

Decimal Requirements

Payment Account TypeDecimals Allowed
MOBILE_MONEY (EASYPAISA)2
MOBILE_MONEY (JAZZCASH)2
MOBILE_MONEY (UPAISA)2
MOBILE_MONEY (SADAPAY)2
MOBILE_MONEY (NAYAPAY)2
MOBILE_MONEY (FINJA)2
MOBILE_MONEY (PAYMAX)2
BANK_ACCOUNT2

Transaction Limits

Payment Account TypeMinimum Amount (PKR)Maximum Amount (PKR)
MOBILE_MONEY (EASYPAISA)50500,000
MOBILE_MONEY (JAZZCASH)50500,000
MOBILE_MONEY (UPAISA)50500,000
MOBILE_MONEY (SADAPAY)50500,000
MOBILE_MONEY (NAYAPAY)50500,000
MOBILE_MONEY (FINJA)50500,000
MOBILE_MONEY (PAYMAX)50500,000
BANK_ACCOUNT50-

Compliance Requirements

FieldRequirements
purposeRequired (please refer our list of pre-determined allowed values in Payouts)
sender.typeRequired
sender.nameRequired
sender.address.line1Required
sender.address.cityRequired
sender.address.postal_codeRequired
sender.address.countryRequired
sender.individual.dobRequired (with type INDIVIDUAL)
sender.individual.identity_document.typeRequired (with type INDIVIDUAL)
sender.individual.identity_document.countryRequired (with type INDIVIDUAL)
sender.individual.identity_document.numberRequired (with type INDIVIDUAL)
sender.individual.identity_document.expires_onRequired (with type INDIVIDUAL)

Sample payload

The samples below are specific to Pakistan and based off the local regulations.

For a more Comprehensive list of fields, see the Payout resource.

{
  "amount": {
    "currency": "PKR",
    "value": "5000.50"
  },
  "payment_account": {
    "type": "MOBILE_MONEY",
    "country": "PK",
    "holder": {
      "type": "INDIVIDUAL",
      "name": "John Doe"
    },
    "mobile_money": {
      "operator": "EASYPAISA",
      "number": "+923001234567"
    }
  },
  "purpose": "REMITTANCE",
  "sender": {
    "type": "INDIVIDUAL",
    "name": "Mario Rossi",
    "address": {
      "line_1": "Piazza del Colosseo",
      "line_2": "1",
      "line_3": "",
      "city": "Roma",
      "postal_code": "00184",
      "country": "IT"
    },
    "individual": {
      "dob": "1985-06-15",
      "identity_document": {
        "type": "PASSPORT",
        "country": "IT",
        "number": "YA0000000",
        "expires_on": "2030-01-01"
      }
    }
  }
}