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
  2. Charge Token

Query Bulk Charge with BacthId

Charge multiple payments from your customers

/payments/bulk-tokenize-charge

GET https://seerbitapi.com/api/v2/payments/bulk-tokenize-charge-search?batchId={{batchId}}

This endpoint allows you to send an array of authorizationCode and amount so payments are charged in batches

Headers

Name
Type
Description

Authorization*

String

Request Body

Name
Type
Description

authorizationCode*

String

code to charge

batchId*

String

unique Id to retrieve batched tokenize-charge

publicKey*

String

merchant publickey

{
    "code": "00",
    "message": "Successful",
    "payload": {
        "content": [
            {
                "id": 7,
                "authorizationCode": "authocode",
                "statusCode": "00",
                "message": "Successful",
                "createdAt": "2022-10-12T09:58:40.102",
                "updatedAt": "2022-10-12T09:58:40.102",
                "batchId": "k2auyutyr",
                "currency": "NGN",
                "cardBin": "5123400",
                "cardLastFourDigits": "0739",
                "cardType": "VISA",
                "amount": "10.00"
            },
            {
                "id": 8,
                "authorizationCode": "authocode",
                "statusCode": "00",
                "message": "Successful",
                "createdAt": "2022-10-12T09:58:46.443",
                "updatedAt": "2022-10-12T09:58:46.443",
                "batchId": "kuiuyu",
                "currency": "NGN",
                "cardBin": "5123400",
                "cardLastFourDigits": "0008",
                "cardType": "VISA",
                "amount": "15.00"
            }
        ],
        "pageable": {
            "sort": {
                "sorted": true,
                "unsorted": false,
                "empty": false
            },
            "pageNumber": 0,
            "pageSize": 10,
            "offset": 0,
            "paged": true,
            "unpaged": false
        },
        "last": true,
        "totalElements": 2,
        "totalPages": 1,
        "sort": {
            "sorted": true,
            "unsorted": false,
            "empty": false
        },
        "first": true,
        "numberOfElements": 2,
        "size": 10,
        "number": 0,
        "empty": false
    }
}
PreviousBulk ChargeNextSubscriptions

Last updated 8 months ago

Bearer Token