Skip to content

Easy Paisa Payouts

Use this page to create payouts using Easy Paisa, a domestic bank transfer method widely used in Turkey.

  • Base URL: https://api.paylander.com/api/v1/payout/
  • Endpoint: POST /v1/payout/

Overview

Easy Paisa allows merchants to send payouts directly to Turkish bank accounts via IBAN.
It’s commonly used for withdrawals, refunds, or affiliate payments in the Turkish market.

Common fields (see Payout API):

  • channel (UUID, required)
  • amount (object, required)
    • currency (ISO 4217, must be PKR)
    • value (string, required)
  • external_id (string, required) → your internal order or payout ID
  • description (string, optional)
  • payout_method (object, required)

payout_method (type: easy_paisa)

Required:

  • type"easy_paisa"
  • account_number → Recipient’s account number

Example Request

json
{
  "channel": "8fec39b6-c41b-46d6-b219-61d115fdfa2d",
  "amount": {
    "currency": "PKR",
    "value": "13.00"
  },
  "payout_method": {
    "type": "easy_paisa",
    "account_number": "1234567"
  },
  "external_id": "ORDER-20251015-4981",
  "description": "Withdrawal #4981",
  "callback_url": "https://your-company.com/callback"
}

Example Response

json
{
  "status": "processing",
  "transaction_id": "9b72d523-0f7a-45e1-8b42-4c71b67b08f9",
  "external_id": null
}

Notes

  • Easy Paisa payouts are only available for Pakistan Rupee lira (PKR).
  • The status field can be:
    • processing — payout created and awaiting confirmation.
    • completed — funds successfully transferred.
    • failed — payout could not be completed (check logs).
  • To query payout status, use GET /api/v1/payout/?channel=<uuid>&transaction_id=<uuid>.

Error Handling

See Error Responses for the full list of possible API errors.