Verify Transaction
This endpoint is to verify a transaction by supplying the session id and credentials.
Test Base URL
https://api-staging.providusbank.com
Production Base URL
HTTP Request
GET /account/NIP
NIP Account.
GET
https://api-staging.providusbank.com/v1 /account/NIP
Get NIP Account.
Request Body
Name
Type
Description
account_number*
string
account number for the account
bank_code
string
code of the bank
Username
string
Username of account owner
Password
string
Password of account owner
{
"bankCode":"57",
"accountName":"NNAJI, JOSHUA & VIVIAN",
"transactionReference":"",
"bvn":"",
"responseMessage":" Approved or completed successfully",
"accountNumber":"3041004406",
"responseCode":"00"
}
Sample Implementation
curl -x GET "https://api-staging.providusbank.com/account/NIP?account_number=3041004406&bank_code=57"
-H "Authorization: {{Authentication token}}"
-H "Username: Username"
-H "Password: Password"
The above command returns JSON structured like this:
{
"bankCode":"57",
"accountName":"NNAJI, JOSHUA & VIVIAN",
"transactionReference":"",
"bvn":"",
"responseMessage":" Approved or completed successfully",
"accountNumber":"3041004406",
"responseCode":"00"
}
Last updated