BankTransfer Bank List
Retrieves Bank List for the BankTransfer Withdraw
POST https://api.paybu.xyz/V1/Withdraw/BankTransfer/BankList/
This endpoint allows you to list available Banks for BankTransfer Withdrawals
Headers
Name
Type
Description
Accept
String
application/json
api-key*
String
PayBu API Key
Request Body
Name
Type
Description
checksum*
String
Create a string imploding values with pipe character and hash it with sha256 algorithm.
PHP Example:
hash("sha256", "apiKey|secretkey|operationGuid")
operationGuid
String
Random GUID for each query generated on your side
{
"status": true,
"error": 0,
"message": "Verification Successful",
"bankList": [
{
"id": 1,
"title": "Akbank"
},
{
"id": 2,
"title": "Albaraka Türk"
},
...
]
}Response Parameters
Last updated