Initiate Bulk Payout

Bulk Payout

📘

Initiate Bulk Payout

POST

https://api.blinqpay.io/api/v1/disbursement/bulk

{
    "title": "Salary payment",
    "batchReference": "batchreference12934567897699213ASDEGHJuj",
    "narration": "June Salary",
    "walletAddress": "4478868353431959",
    "totalAmount": 200,
    "transactionList":[
        {
            "amount": 100,
            "reference": "FinalJDKY4",
            "narration": "Payout Sterlin",
            "bankCode": "000001",
            "accountNumber": "0010422925",
            "currency": "NGN",
            "beneficiaryAccountName": "Daniel MAK"
        },
        {
            "amount": 100,
            "reference": "FinalJDKYD",
            "narration": "Access Payout 1",
            "bankCode": "000014",
            "accountNumber": "00493286491",
            "currency": "NGN",
            "beneficiaryAccountName": "OLUWATOSIN MAKINE"
        }
    ]
}
PARAMETERDECRIPTION
titleTitle for your batch transfer
batchReferenceThe unique reference for the entire batch of transactions being sent.
narrationThe Narration for the batch transactions being processed.
walletAddressUnique reference to identify the wallet to be debited.
totalAmountTotal amount to be processed
transactionListTransaction List
{
    "status": true,
    "message": "success",
    "data": {
        "totalAmount": 200,
        "totalFee": 100,
        "batchReference": "batchreference129345678JC",
        "batchStatus": "PROCESSING",
        "totalTransactions": 2,
        "dateCreated": "2022-07-30T12:39:07.000000Z"
    }
}

Get Bulk Transfer Details

📘

Bulk Transfer Details

GET

https://api.blinqpay.io/api/v1/disbursement/batch?reference={batchReference}

{
    "status": true,
    "message": "success",
    "data": {
        "totalAmount": "200.0000",
        "totalFee": "100.0000",
        "batchReference": "batchreference129345678JBJDBC",
        "batchStatus": "SUCCESS",
        "totalTransactions": "2",
        "successfulTransactions": "2",
        "failedTransactions": "0",
        "dateCreated": "2022-07-30T12:39:07.000000Z"
    }
}

Get Bulk Transfer Transactions

📘

Bulk Transfer Transactions

https://api.blinqpay.io/api/v1/disbursement/transactions/batch?reference={batchReference}

{
    "status": true,
    "message": "success",
    "data": [
        {
            "batchReference": "batchreference129345678JBJDBC",
            "transactionReference": "Final1234BLK",
            "narration": "Blinqremit Payout Sterlin",
            "amount": "100.0000",
            "fee": "50.0000",
            "bankCode": "000017",
            "bankName": "WEMA BANK",
            "currency": "NGN",
            "accountName": "OLUWATOSIN MAKINDE",
            "accountNumber": "0248244150",
            "responseCode": "00",
            "responseMessage": "Approved or completed successfully",
            "status": "SUCCESS"
        },
        {
            "batchReference": "batchreference129345678JBJDBC",
            "transactionReference": "Final12345hk459",
            "narration": "Access Payout 1",
            "amount": "100.0000",
            "fee": "50.0000",
            "bankCode": "000014",
            "bankName": "ACCESS BANK",
            "currency": "NGN",
            "accountName": "DANIEL MAK",
            "accountNumber": "07731834150",
            "responseCode": "00",
            "responseMessage": "Approved or completed successfully",
            "status": "SUCCESS"
        }
    ]
}