PIS API v1.0
HomeCreate AccountLogin
  • Getting Started
  • Recommendations
  • Collections
    • Virtual Bank Account
      • Create Account
      • Get Account
      • Fetch Accounts
      • Webhooks
    • Sub-accounts
    • Installments
  • Payouts
    • Bank Transfer
      • Initiate Transaction
      • Verify Transaction
      • Fetch Transactions
  • Misc
    • Get Balance
    • Get Account Details
    • Resolve Account
    • Get Bank List
Powered by GitBook
On this page

Was this helpful?

  1. Payouts
  2. Bank Transfer

Verify Transaction

GET https://api.pis.ng/v1.0/payouts/transfer/get

Headers

Name
Type
Description

Secret-Key*

string

Your PIS Secret Key.

Content-Type*

string

application/json

Request Body

Name
Type
Description

reference*

string

The reference you sent upon initiating the transaction.

{
    "code": 200,
    "status": "success",
    "message": "Successful",
    "data": {
        "reference": "183136167785160334432965",
        "amount": "1000",
        "accountNumber": "1111111111",
        "accountName": "DAVID OKEDION",
        "bankName": "KUDA MICROFINANCE BANK",
        "bankCode": "090267",
        "narration": "First withdrawal",
        "status": "approved",
        "charge": "50",
        "callbackUrl": "",
        "date": "1677851604"
    }
}
{
    "code": 401,
    "status": "error",
    "message": "Authorization required!",
    "data": null
}
{
    "code": 400,
    "status": "error",
    "message": "Bad Request",
    "data": null
}
{
    "code": 404,
    "status": "error",
    "message": "The endpoint you are trying to access does not exist.",
    "data": null
}
PreviousInitiate TransactionNextFetch Transactions

Last updated 1 year ago

Was this helpful?