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. Collections
  2. Virtual Bank Account

Get Account

GET https://api.pis.ng/v1.0/collections/vba/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 creating the account.

{
    "code": 200,
    "status": "success",
    "message": "Successful",
    "data": {
        "accountNumber": "2057488657",
        "accountName": "PIS - ISIMPLIFY SERVICES",
        "firstName": "David",
        "lastName": "Okedion",
        "email": "customer@gmail.com",
        "phone": "8031111111",
        "bvn": "211111111111",
        "callbackUrl": "https://isimplify.ng/webhook",
        "status": "active",
        "dateCreated": "1686047833"
    }
}
{
    "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
}
PreviousCreate AccountNextFetch Accounts

Last updated 2 years ago

Was this helpful?