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

Initiate Transaction

POST https://api.pis.ng/v1.0/payouts/transfer/create

Headers

Name
Type
Description

Secret-Key*

string

Your PIS Secret Key.

Content-Type*

string

application/json

Request Body

Name
Type
Description

reference*

string

A unique reference (100 chars max) for this transaction; can be used in querying its status.

amount*

float

The amount you want to transfer.

accountNumber*

int

The recipient's account number.

bankCode*

string

narration*

string

The transaction narration.

callbackUrl

string

Your callback URL. We'll notify you here if the status of the transaction changes.

{
    "code": 200,
    "status": "success",
    "message": "Successful",
    "data": {
        "amount": 100,
        "accountNumber": "1111111111",
        "accountName": "DAVID OKEDION",
        "bankName": "GUARANTEE TRUST BANK",
        "bankCode": "000013",
        "narration": "Testing",
        "charge": "50"
    }
}
{
    "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
}
PreviousBank TransferNextVerify Transaction

Last updated 1 year ago

Was this helpful?

The recipient's (NIP) bank code. See bank codes from the endpoint.

Get bank list