Papara Deposit Status
Checks Papara Deposit Status
POST https://api.paybu.xyz/V1/Deposit/Papara/Status/:transactionId
This endpoint allows you to check Papara deposit 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": "Deposit Payment Found",
"paymentStatus": false,
"paymentStatusCode": 0,
"paymentStatusDescription": "Payment Awaiting"
}{
"error": 0,
"message": "Deposit Payment Found",
"paymentStatus": false,
"paymentStatusCode": 1,
"paymentStatusDescription": "Payment In Review"
}{
"error": 0,
"message": "Deposit Payment Found",
"paymentStatus": true,
"paymentStatusCode": 2,
"paymentStatusDescription": "Payment Approved"
}{
"error": 0,
"message": "Deposit Payment Found",
"paymentStatus": false,
"paymentStatusCode": 4,
"paymentStatusDescription": "Payment Declined"
}Response Parameters
Last updated