Verify Transaction
The Verify Transaction API allows you confirm the status of a transaction.
Transaction Status
Status | Description |
---|---|
PENDING | |
SUCCESS | |
FAILED | |
COLLECTED |
You do this by making a GET request to the Verify Transaction endpoint from your server using your transaction reference.
-H "x-api-key: your_secret_key".
{{host}}/v1/transactions/verify/:reference
If the API call is successful, Kyshi returns the following response:
{
"status": true,
"code": 200,
"message": "Success",
"data": {
"id": "",
"status": "PENDING"
}
}
Updated 6 months ago