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