Create BankTransfer 2 Withdraw
Creates BankTransfer 2 Withdraw
POST
https://api.parona.in/V1/Withdraw/BankTransfer2/Create/
This endpoint allows you to create a new BankTransfer 2 withdraw request.
Headers
Accept
String
application/json
api-key*
String
ParonaPAY API Key
Request Body
memberId*
String
userid
on your side
memberUserName
String
username
on your sider
transactionId*
String
Transaction ID created on your side (this value is sent back to you by a callback request to callback_url
when transaction is completed)
amount*
Integer
Amount in INT
format with no decimals
checksum*
String
Create a string imploding values with pipe character and hash it with sha256
algorithm.
PHP Example:
hash("sha256", "apiKey|secretKey|transactionId")
memberFullName*
String
Full Name
of the user on your side
callback_url*
String
Transaction result will be sent to this endpoint.
bankAccountNumber*
String
Receipent Bank Account IBAN Number (Money will be transferred to this address/account)
bankAccountFullName
String
Receipent Bank Account Owner Full Name (optional)
bankId
Integer
Bank ID value from bankList endpoint.
If unknown "0" (zero) should be sent.
{
"status": true,
"error": 0,
"message": "Withdraw Payment Successfully Created",
"paymentStatus": false,
"paymentStatusCode" : 0,
"paymentStatusDescription": "Payment Awaiting"
}
Response Parameters
Last updated