Disbursements
Verify a Disbursement
Disbursements
Verify a Disbursement
Verify a Disbursement
GET
/
billing
/
v1
/
disbursements
/
verify
/
{reference}
curl --request GET \
--url https://sandbox-api.payfonte.com/billing/v1/disbursements/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"
},
"provider": "provider-slug"
}
}
Path Parameters
Reference of the transaction to verify
Response
200 - application/json
Status of the transaction
Available options:
success
, failed
, processing
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"
This is the provider we are validating the account against. Find full list of providers here Supported Providers
Example:
"provider-slug"
curl --request GET \
--url https://sandbox-api.payfonte.com/billing/v1/disbursements/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"
},
"provider": "provider-slug"
}
}