BankTransfer 2 Withdraw Status

Checks BankTransfer 2 Withdraw Status

POST https://api.parona.in/V1/Withdraw/BankTransfer2/Status/:transactionId

This endpoint allows you to check BankTransfer 2 withdraw status with transactionId.

Path Parameters

Name
Type
Description

transactionId*

String

Transaction ID created from your side

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|transactionId")

{
    "error": 0,
    "message": "Withdraw Payment Found",
    "paymentStatus": false,
    "paymentStatusCode": 0,
    "paymentStatusDescription": "Payment Awaiting"
}

Response Parameters

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

message: Request response message.

paymentStatus: This value will always be returned false until the payment completes successfully.

paymentStatusCode:

0 : Awaiting

1 : In Review

2 : Approved

4 : Declined

paymentStatusDescription: Payment status description.

Last updated