API
  • Introduction
  • Authentication
  • Error Handling
  • API ENDPOINTS
    • Payment
    • Invoices
      • Create Invoice
      • Re-send Invoice
      • Get Invoice - customerEmail
      • Get Invoice - invoiceNo
      • Get Invoice - orderNo
    • Payment Link
      • Create Link
      • Get Link
      • Update Link
      • Delete Link
    • Charge Token
      • Create Token
      • Get Token
      • Charge Token
      • Bulk Charge
      • Query Bulk Charge with BacthId
    • Subscriptions
      • Create Subscription
      • Charge Subscription
      • Get Customer Subscription
      • Update Customer Subscription
      • Get Merchant Subscription
    • Virtual Account
      • Create Virtual Account
      • Get Virtual Account
      • Delete Virtual Account
      • Get Payment
    • Pay with Transfer
    • Pay with USSD
    • Mobile Money Payments
    • Bank Account Payments
    • Card Payment
      • Initializing a Card Payment
      • Scenario 1 (Verve Card Type)
      • Scenario 2 (Master Card and Visa Card Type)
      • Scenario 3
Powered by GitBook
On this page
  1. API ENDPOINTS

Bank Account Payments

POST https://seerbitapi.com/api/v2/payments/initiates

curl --location 'https://seerbitapi.com/api/v2/payments/initiates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTION_KEY' \
--data-raw '{
	"publicKey":"Your_public_key",
	"amount":"2000.00",
	"fee":"10",
	"fullName":"John Doe",
	"mobileNumber":"08037456590",
	"currency":"NGN",
	"country":"NG",
	"paymentReference":"UYTRE234566677RDFGFDDSS",
	"email":"johndoe@gmail.com",
	"productId":"Foods",
	"productDescription":"Uba Account Transaction ",
	"clientAppCode":"kpp64",
	"redirectUrl":"https://checkout.seerbit.com",
}'
{
  "status": "SUCCESS",
  "data": {
            "code": "S20",
            "payments": {
                          "paymentReference": "UYTRE234566677RDFGFDDSS",
                          "linkingReference": "F320660611587911267617"
                         },
            "message": "Transaction is pending"
           }
}
PreviousMobile Money PaymentsNextCard Payment

Last updated 8 months ago