WooshPay OpenAPI
Product DocumentAPI ReferenceJS SDK ReferenceSaaS Platform Integration
Product DocumentAPI ReferenceJS SDK ReferenceSaaS Platform Integration
Back to WooshPay Website
  1. Bank Transfer
  • Online payments
    • Quick Start
    • Integration overview
    • Wooshpay JS SDK
    • Wooshpay Checkout
    • Wooshpay Direct API
    • Payment Link
    • Authorize and capture
    • Build subscriptions integration
    • Testing cards
  • After the payment
    • Webhook
    • Check the webhook signatures
    • 校验webhook签名
  • Add more payment methods
    • Supported payment method
    • Cards
    • Wallets
      • Alipay
      • Alipay HK
      • Apple Pay
      • Google Pay
      • Wechat Pay
      • 微信支付
      • Kakao Pay
      • DANA
      • Boost
      • Grabpay
      • Mcash
      • Touch'n Go
      • ShopeePay
      • UnionPay
      • 9Pay
      • OVO
      • GCash
      • TrueMoney
    • Bank redirects
      • Bancontact
      • BPI
      • Trustly
      • EPS
      • Giropay
      • iDEAL
      • Przelewy24
      • FPX
    • Buy Now Pay Later
      • Klarna
    • Bank Debits
      • Sepa Direct Debit
    • Bank Transfer
      • Bank Transfer in Europe
      • Bank Transfer in United Kingdom
      • Bank Transfer in Indonesia
      • Bank Transfer in Nigeria
      • Bank Transfer in South Africa
    • QR Payments
      • QRIS
      • PromptPay
    • Real-time payments
      • PIX
      • PayNow
      • UPI
      • SPEI
    • Mobile Money
      • Mobile Money - Multi-Country Integration Guide
  • More payment scenarios
    • Set up future payments
    • Save payment method during payment
    • Save Card with Wooshpay Checkout
  • SaaS platform integration
    • Shopify Plugin
    • WooCommerce
    • Shoplazza 店匠
    • Shopastro 星盘
    • Shopline Plugin
    • Sage Connection
  • Payouts
    • Overview
    • Cameroon
    • Europe
    • Ghana
    • Kenya
    • Nigeria
    • Rwanda
    • South Africa
    • Tanzania
    • Uganda
    • United Kindom
    • United States of America
    • Monitor Your Payout Results
  • Resources
    • Supported currencies
  1. Bank Transfer

Bank Transfer in Nigeria

Features#

Support Country/RegionNigeria
processing currencyNGN
settlement currencyUSD
refund❌
chargeback❌

Integration Method#

Payment method enumeration values: bank_transfer_ng
There is two integration method for bank transfer in South Africa
1.
Direct API
2.
Checkout

Direct API#

Create a PaymentIntent
Request
{
    "amount": 40000,
    "currency":"NGN",
    "confirm":true,
    "payment_method_data" : {
        "type":"bank_transfer_ng"
    },
    "merchant_order_id":"order123",
    "return_url":"https://yourwebsite.com"
}
Response
{
    "id": "pi_1953741224082931712",
    "object": "payment_intent",
    "created": 1754643181000,
    "livemode": false,
    "currency": "NGN",
    "amount": 40000,
    "status": "requires_action",
    "merchant_order_id": "order123",
    "client_secret": "pi_1953741224082931712_secret_Fpksynf4TE4yuzJec7FkHSF8",
    "next_action": {
        "type": "redirect_to_url",
        "redirect_to_url": {
            "url": "https:/XXXXXXXXXXXXXXXX"
        }
    },
    "payment_method_types": [
        "bank_transfer_ng"
    ],
    "confirmation_method": "automatic",
    "return_url": "https://yourwebsite.com",
    "payment_method": "pm_1953741223881605120",
    "capture_method": "automatic"
}

Checkout#

Payment flow#

1.
Customer selects pay with bank transfer from the list of payment methods available.
a7637436-3a5b-4e3c-b7e1-8a7d5a2e488b.png
2.
Customers are redirected to bank page to complete the payment.

Create a seesion#

Request Create a Session
{
    "cancel_url": "https://XXXXX",
    "mode": "payment",
    "success_url": "https://yourwebsite.com",
    "payment_method_types": [
        "bank_transfer_ng"
    ],
    "line_items": [
        {
            "price_data": {
                "currency": "NGN",
                "unit_amount": 100000,
                "nickname": "apple",
                "product_data": {
                    "id": null,
                    "name": "apple",
                    "description": "yummy yummy"
                }
            },
            "quantity": 1
        }
    ]
}
Response
{
    "id": "cs_1953725965800570880",
    "object": "checkout.session",
    "created": 1754639543000,
    "livemode": false,
    "acctId": "517707294131729244161",
    "currency": "NGN",
    "customer": "",
    "mode": "payment",
    "status": "open",
    "url": "https://checkouttest.wooshpay.com/XXXXXXXXXXXXXXXXXXXXX",
    "cancel_url": "https://XXXXX",
    "line_items": {
        "object": "list",
        "data": [
            {
                "id": "li_1953725965804765184",
                "object": "item",
                "currency": "NGN",
                "description": "apple",
                "price": {
                    "id": "price_1953725965804769280",
                    "object": "price",
                    "created": 1754639543000,
                    "livemode": false,
                    "active": true,
                    "currency": "NGN",
                    "nickname": "apple",
                    "product": {
                        "id": "prod_1953725965808959488",
                        "object": "product",
                        "created": 1754639543000,
                        "livemode": false,
                        "active": true,
                        "description": "yummy yummy",
                        "name": "apple",
                        "updated": 1754639543000
                    },
                    "type": "one_time",
                    "unit_amount": 100000,
                    "billing_scheme": "per_unit"
                },
                "quantity": 1,
                "amount_subtotal": 100000,
                "amount_total": 100000
            }
        ]
    },
    "payment_intent": "pi_1953725966270332928",
    "payment_method_types": [
        "bank_transfer_ng"
    ],
    "payment_status": "unpaid",
    "success_url": "https://yourwebsite.com",
    "expires_at": 1754725943377,
    "payment_link": "",
    "client_secret": "pi_1953725966270332928_secret_fnBeBgHgrkOFY9HIxAMr5amk",
    "customer_creation": "if_required"
}

Next step#

You can add more features to your integration as needed

Webhook#

Listen to events on your WooshPay account so your integration can automatically trigger reactions. Create a webhook that mainly focuses on enabled_events and url.
Modified at 2025-08-08 09:04:45
Previous
Bank Transfer in Indonesia
Next
Bank Transfer in South Africa
Built with