BankTransfer Bank List

Retrieves Bank List for the BankTransfer Withdraw

POST https://api.parona.in/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

ParonaPAY 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

error: Request response error code. Returns 0 if succeeds.

message: Request response message.

bankList: Array of Banks available on our side.

Last updated