Transaction Status Verification
In some situations, the merchant might wish to confirm the status of the transaction. This document resource describes the process of retrieving the transaction details (status inclusive)
Whenever we get the final transaction status from the processor (telecom/bank etc), we'll send the notifications to your designated callback URLs and these requests will be retried using the exponential back-off strategy. This guarantees that even when your URL is unreachable OR the http request fails, there will be automated retries at different intervals. Our belief is that; if we don't have the final status yet, checking status from the merchant side doesn't help. However, if status check is crucial for your workflow, please note the following.
Status check requests will be denied if they're done less than 2 minutes from the time the transaction was initiated.
We recommend that an interval of 5 minutes is implemented between status check requests for the same transaction.
Get Transaction Status
GET
https://gwapisdbx.ellypayapp.com/data/transaction/verify/{reference}
Returns the transaction details and the parameter data.transaction_status
holds the current status of the transaction. Replace {reference}
with the merchant reference that was used prior when initiating the transaction.
Headers
public-key*
String
The merchant account Public Key
Sample Transaction Status Request
Transaction Status Descriptions
PENDING
The transaction has been logged on the EllyPay platform, awaiting escalation to the last mile processor (telecom, bank etc)
PROCESSING
The transaction is currently being processed and the EllyPay platform is waiting for the final status from the last mile processor
FAILED
The transaction is failed. Reason for failure will always be in the data.status_message
parameter.
COMPLETED
The transaction was processed successfully.
CANCELLED
The transaction was cancelled - either by the customer or an admin process
Last updated