Yogupay
  • Welcome!
  • Getting Started
    • Signing Up
    • Onboarding Process
    • Environments
    • Compliance
      • Documents Required
      • Terms & Conditions
      • Licenses
      • Privacy Policy
  • Business Dashboard
    • Login
    • Dashboard
    • View Balances
    • Add Money (Deposit)
    • Adding a Beneficiary
    • Send Money
    • Swap Currencies
    • Whitelist your IPs
    • Viewing Transactions
  • Developers
    • Authentication
    • API response codes
    • 🏦Bank Codes
    • 💱Currency Codes
    • View Account Balances
    • View All Transactions
    • Get Transaction By ID
    • 🌍Payout Africa
      • 🇬🇭Payout Ghana
      • 🇰🇪Payout Kenya
      • 🇳🇬Payout Nigeria
        • Verify Bank Account NGN
      • 🇺🇬Payout Uganda
      • 🇨🇲Payout Cameroon
      • 🇨🇮Payout Ivory Coast
    • 🌎Payout LATAM
Powered by GitBook
On this page
  1. Developers
  2. Payout Africa
  3. Payout Nigeria

Verify Bank Account NGN

This endpoint is used to validate a bank account recipient before initiating an NGN payout.

PreviousPayout NigeriaNextPayout Uganda

Last updated 1 month ago

POST /

Headers

Name
Value

Content-Type

application/json

Token

token

Body

Name
Type
Description

bank_account_number*

string

The account number to be verified

bank_code*

string

The code of the bank associated with the account

currency_code*

string

The currency code of the account

Response

curl --location 'https://api.tumapay.com/api/validate-account' \
--header 'token: [Generated after Login]' \
--data '{
    "bank_account_number": "<Bank account number>",
    "bank_code": "<GET from https://api.tumapay.com/api/get-banks?country=NIGERIA>",
    "currency_code": "NGN"
}'

{
  "status": {
    "type": "number"
  },
  "message": {
    "type": "string"
  },
  "accountName": {
    "type": "string"
  },
  "accountNo": {
    "type": "number"
  }
}
{
  "error": "Invalid request"
}

🌍
🇳🇬
api/validate-account