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. Misc

Get Account Details

GET https://api.pis.ng/v1.0/account/details

Headers

Name
Type
Description

Secret-Key*

string

Your PIS Secret Key.

Content-Type*

string

application/json

{
    "code": 200,
    "status": "success",
    "message": "Successful",
    "data": {
        "id": "1000000001",
        "name": "PRO INTERNET SOLUTIONS LIMITED",
        "type": "corporate",
        "status": "active",
        "vba": {
            "reference": "372718167784507651059052",
            "accountNumber": "2051777052",
            "accountName": "PIS - PRO INTERNET SOLUTIONS LIMITED",
            "bankName": "KUDA MICROFINANCE BANK"
        },
        "settlementAccounts": [
            {
                "reference": "78450765105905",
                "accountNumber": "0260706071",
                "accountName": "PRO INTERNET SOLUTIONS LIMITED",
                "bankName": "GUARANTEE TRUST BANK"
            },
            {
                "reference": "51059057845076",
                "accountNumber": "0607102607",
                "accountName": "PRO INTERNET SOLUTIONS LIMITED",
                "bankName": "VFD MICROFINANCE BANK"
            }
        ]
    }
}
{
    "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 BalanceNextResolve Account

Last updated 1 year ago

Was this helpful?