Collections
Verify Transaction
Collections
Verify Transaction
This is the endpoint to verify a Transaction
GET
/
payments
/
v1
/
payments
/
verify
/
{reference}
curl --request GET \
--url https://sandbox-api.payfonte.com/payments/v1/payments/verify/{reference} \
--header 'client-id: <api-key>' \
--header 'client-secret: <api-key>'
{
"data": {
"status": "success",
"reference": "<string>",
"externalReference": "<string>",
"amount": 100000,
"currency": "NGN",
"user": {
"name": "Example User",
"email": "user@example.com",
"phoneNumber": "2347012345678"
},
"paidAt": 1691265191
}
}
Path Parameters
Reference of the transaction to verify
Response
200 - application/json
Status of the transaction
Available options:
success
, abandoned
, initialized
Example:
"success"
Transaction Reference
This is the reference sent to us by the merchant when the transaction was created
Amount should be in the subunit of the supported currency i.e value * 100
Example:
100000
3 character currency code
Example:
"NGN"
Unix timestamp value for when payment was verified from the provider
Example:
1691265191
curl --request GET \
--url https://sandbox-api.payfonte.com/payments/v1/payments/verify/{reference} \
--header 'client-id: <api-key>' \
--header 'client-secret: <api-key>'
{
"data": {
"status": "success",
"reference": "<string>",
"externalReference": "<string>",
"amount": 100000,
"currency": "NGN",
"user": {
"name": "Example User",
"email": "user@example.com",
"phoneNumber": "2347012345678"
},
"paidAt": 1691265191
}
}