1. API List
Lesspay2.0
  • LESSPAY2 API Reference
    • Get started
    • Authentication
    • Parameter Specifications
    • Pay In
      • Overview
      • Development Guidelines
      • Local Payment Methods (LPMs)
      • Error Codes
      • Card payment
        • Card Payment
        • 3D Secure (3DS) Configuration
        • Fraud & Dispute Webhook Notifications
      • API List
        • Create Payin
        • Fetch Payin
      • Webhook
        • Payin webhook
    • Pay Out
      • Overview
      • Development Guidelines
      • Multiple Transfer Methods
      • Error Codes
      • API List
        • Create Payout
          POST
        • Payout Supported Banks
          POST
        • Fetch Payout
          POST
      • Webhook
        • Payout webhook
  1. API List

Payout Supported Banks

Test Mode (Sandbox)-paymant
https://lesspay2-pay-uat.doopayment.com
Test Mode (Sandbox)-paymant
https://lesspay2-pay-uat.doopayment.com
POST
/api/global/payout/bank

Request

Header Params

Body Params application/json

Example
{
    "bank_country_code": "st",
    "currency": "string",
    "way_code": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://lesspay2-pay-uat.doopayment.com/api/global/payout/bank' \
--header 'x-auth-signature;' \
--header 'x-auth-appid;' \
--header 'X-Auth-Timestamp;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "bank_country_code": "st",
    "currency": "string",
    "way_code": "string"
}'

Responses

🟢200
application/json
Body

Example
{
  "code": 0,
  "msg": "",
  "data": {
    "supported_bank": [
      ""
    ],
    "transfer_limit": {
      "currency": "",
      "maximum": 0.0,
      "minimum": 0.0
    }
  },
  "encryptData": "",
  "sign": ""
}
Modified at 2025-12-22 09:57:20
Previous
Create Payout
Next
Fetch Payout
Built with