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

Fetch Accounts

GET https://api.pis.ng/v1.0/collections/vba/fetch

Headers

Name
Type
Description

Secret-Key*

string

Your PIS Secret Key.

Content-Type*

string

application/json

Request Body

Name
Type
Description

startDate

string

Filter by start date (YYYY-MM-DD).

endDate

string

Filter by end date (YYYY-MM-DD).

page

int

Jump to any page of you want to retrieve.

limit

int

The number of rows you want to retrieve. The maximum rows you can retrieve is 100.

{
    "code": 200,
    "status": "success",
    "message": "Successful",
    "data": [
        {
            "reference": "372718167784507651059052",
            "accountNumber": "2051777052",
            "accountName": "PIS - PRO INTERNET SOLUTIONS LIMITED",
            "firstName": "David",
            "lastName": "Okedion",
            "email": "myemail@gmail.com",
            "phone": "8022437390",
            "bvn": "21111111111",
            "callbackUrl": "",
            "status": "active",
            "dateCreated": "1677845077"
        },
        {
            "reference": "600710167784597260128014",
            "accountNumber": "2051778468",
            "accountName": "PIS - COLAEL INTEGRATED SERVICES",
            "firstName": "Gbenga",
            "lastName": "Olatunji",
            "email": "info@colael.com",
            "phone": "8020338888",
            "bvn": "22180373295",
            "callbackUrl": "",
            "status": "active",
            "dateCreated": "1677845977"
        },
        {
            "reference": "226339167784605540955223",
            "accountNumber": "2051778554",
            "accountName": "PIS - OGITAG VENTURES",
            "firstName": "Gbenga",
            "lastName": "Olatunji",
            "email": "myemail@gmail.com",
            "phone": "8088338888",
            "bvn": "21111111111",
            "callbackUrl": "",
            "status": "active",
            "dateCreated": "1677846057"
        },
        {
            "reference": "544417167784655817194587",
            "accountNumber": "2051779393",
            "accountName": "PIS - MICOD JPLUS BIZ VENTURES",
            "firstName": "Michael",
            "lastName": "Olanrenwaju",
            "email": "myemail@mjveri.com",
            "phone": "8110968620",
            "bvn": "21111111111",
            "callbackUrl": "",
            "status": "active",
            "dateCreated": "1677846560"
        },
        {
            "reference": "7f69c6d2cf289c40900ba6c7adf9ba58",
            "accountNumber": "2051811800",
            "accountName": "PIS - DELE BABATUNDE",
            "firstName": "Dele",
            "lastName": "Babatunde",
            "email": "dele@gmail.com",
            "phone": "8011437390",
            "bvn": "21111111111",
            "callbackUrl": "https://mjveri.ogvoice.com/webhooks",
            "status": "active",
            "dateCreated": "1677872696"
        },
        {
            "reference": "96a731013ebaaf21d0936f0a6e48f056",
            "accountNumber": "2051813048",
            "accountName": "PIS - DAVID OKEDION",
            "firstName": "David",
            "lastName": "Okedion",
            "email": "myemail@gmail.com",
            "phone": "8034437390",
            "bvn": "21111111111",
            "callbackUrl": "https://colael.com/webhooks",
            "status": "active",
            "dateCreated": "1677874216"
        },
        {
            "reference": "baaa7ac21a58022ca5aef3c0ece82a2d",
            "accountNumber": "2051814887",
            "accountName": "PIS - OLATUNJI GBENGA",
            "firstName": "Olatunji",
            "lastName": "Gbenga",
            "email": "myemail@gmail.com",
            "phone": "8011338888",
            "bvn": "21111111111",
            "callbackUrl": "https://colael.com/webhooks",
            "status": "active",
            "dateCreated": "1677877329"
        },
        {
            "reference": "9618f63672220bd9c11f0974651a79b6",
            "accountNumber": "2051829724",
            "accountName": "PIS - SEUN LAS",
            "firstName": "Seun",
            "lastName": "Las",
            "email": "helloworld@gmail.com",
            "phone": "9111176171",
            "bvn": "21111111111",
            "callbackUrl": "https://mjveri.ogvoice.com/webhooks",
            "status": "active",
            "dateCreated": "1677915085"
        },
        {
            "reference": "51eae190e433d713fa341d48bf765ede",
            "accountNumber": "2051856982",
            "accountName": "PIS - MICHAEL MJVERI",
            "firstName": "Michael",
            "lastName": "Mjveri",
            "email": "myemail@gmail.com",
            "phone": "8100968620",
            "bvn": "21111111111",
            "callbackUrl": "https://mjveri.ogvoice.com/webhooks",
            "status": "active",
            "dateCreated": "1677934138"
        },
        {
            "reference": "19b0d2ca2983995133d622d52eba1e3f",
            "accountNumber": "2051857075",
            "accountName": "PIS - WALE BABATUNDE",
            "firstName": "Wale",
            "lastName": "Babatunde",
            "email": "wale@gmail.com",
            "phone": "7110500008",
            "bvn": "21111111111",
            "callbackUrl": "https://mjveri.ogvoice.com/webhooks/pis",
            "status": "active",
            "dateCreated": "1677934211"
        }
    ],
    "meta": {
        "page": 1,
        "limit": 10,
        "totalPages": 3,
        "totalRows": 30
    }
}
{
    "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
}
PreviousGet AccountNextWebhooks

Last updated 1 year ago

Was this helpful?