LuxtakLuxtak
  • Introduction
  • Payin API
    • Environments
    • All-In-One Checkout
      • Checkout Page (General)
      • Checkout Page (E-com)
    • Direct integration
      • Brazil
        • Pix
      • Mexico
        • Cash
        • CoDi
        • SPEI
      • Colombia
        • Wallet
        • PSE
      • Chile
        • Bank Transfer
        • Wallet
      • Peru
        • Bank Transfer
        • Cash
      • Ecuador
        • Bank Transfer
        • Cash
      • Russia
        • CreditCard
        • SBP
        • SberPay
        • TPay
        • Vault
      • Global
        • Crypto
        • Binance
    • Notification
      • Security
    • Recurring Payment
      • Support Target and Currency
    • Tokenization
    • Payin Detail
    • Refund
    • Data
      • Payment Method
      • Data for test (Sandbox)
      • Payin Status
      • Icon of methods
      • Country Code
    • API Code
  • Payout API
    • Environments
    • Security
    • Submit a payout
      • Brazil
        • Pix
      • Russia
        • SBP
      • Global
        • Crypto
    • Notification
    • Account Balance
    • Payout Status
    • Payout Bank List
    • Payout List
    • Payout Detail
    • Payment Method
    • Data for test
    • API Code

Payout Bank List

Get Payout Bank List

https://api.luxtak.com/api/payout/bank-account-list

This endpoint allows you to get the list of supported banks

Parameters

Header

NameTypeDescription
Content-Type*stringapplication/json; chartset=UTF-8
AppId*stringYour App ID in payout platform
Authorization*stringsignature, generated by SHA256($sorted_params + $app_key)

Body

NameTypeDescription
country*stringCountry Code. For example, RUS for Russia
method*string
timestamp*Integerunix timestamp, e.g. 1628512575

Responses

200Payout list successfully retrieved.
{
  "code": 200,
  "msg": "success",
  "time": 1628580845,
  "data": {
  ...
  }
}
400Request has expired
{
  "code": 5001000,
  "msg": "system error",
  "time": 1628580940,
  "data": {}
}

Example

curl --location --request POST
'https://api.luxtak.com/api/payout/bank-account-list' \
--header 'AppId: 94FAC**********************68548' \
--header 'Authorization:
d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302'
\
--header 'Content-Type: application/json' \
--data-raw '{
  "country": "RUB",
  "method": "SBP",
  "timeStamp": "1733992186"
}'

Tips

Note: 94FAC**********************68548 is luxtak's test merchant id for sandbox, and d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302 is authorization token associated with the test App ID.

Tips

Note: The page_num should start from the number 1, while 0 is incorrect.

Prev
Payout Status
Next
Payout List