Payment Verification
Payment verification is an extra verification pattern to check the status of a transaction. The major value required for this check is the secret code sent when creating the payment link.
End Point
"https://calls.peerwallet.com/verify-payment"
Send your keys via headers
VALUE
api-private-key
REQUIRED
YES
DESCRIPTION
This is your Public API Keys which can be found here.https://peerwallet.
com/map/api-keys
Below are the POST values to send and their explanations on each field.
VALUE
secret
REQUIRED
YES
DESCRIPTION
This is the secret sent when creating the payment link.
Post Fields
[
"api-private-key",
"secret"
]
Return Values Success Sample
{
"status": 200,
"payment_status":"Paid",
"escrow_status": "completed",
"last_date": "25th of December, 2022", ,
"note": "Payment verification has been processed"
}
Return Values Error Sample
{
"status": 111,
"note":"API key is either not correct or its in-active"
}