Get Transfer Details (Deprecated)

Single Transfers

To get the details of a single transfer,  you will need to send a request to the endpoint below:

Endpoint

GET: https://sandbox.monnify.com/api/v1/disbursements/single/summary?reference={{reference}}

This endpoint is protected with Basic Authentication

Below is a sample response for getting the details of a single transfer

Get Single Transfer Details Response
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "amount": 230.00,
        "reference": "Final-Reference-3a",
        "narration": "911 Transaction",
        "bankCode": "058",
        "accountNumber": "0111946768",
        "currency": "NGN",
        "accountName": "MEKILIUWA, SMART CHINONSO",
        "bankName": "GTBank",
        "dateCreated": "13/11/2019 09:42:07 PM",
        "fee": 1.00,
        "status": "SUCCESS"
    }
}

You can also use this endpoint to get the details of individual transactions in a batch

Bulk Transfers

To get the details of a bulk transfer,  you will need to send a request to the endpoint below:

Endpoint

GET: https://sandbox.monnify.com/api/v1/disbursements/batch/summary?reference={{batchReference}}

This endpoint is protected with Basic Authentication

Below is a sample response for getting the details of a bulk transfer

Get Bulk Transfer Details Response
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "title": "Final Batch - Continue on Failure",
        "totalAmount": 2108.48,
        "totalFee": 8.48,
        "batchReference": "batch-1573685090035",
        "totalTransactions": 3,
        "failedCount": 0,
        "successfulCount": 0,
        "pendingCount": 3,
        "batchStatus": "AWAITING_PROCESSING",
        "dateCreated": "13/11/2019 10:45:08 PM"
    }
}

Field Reference

FieldDescription
amountThe amount to be disbursed to the beneficiary
referenceThe unique reference for a transaction. Also to be specified for each transaction in a bulk transaction request.
batchReference The unique reference for the entire batch of transactions being sent.
narrationThe Narration for the transactions being processed
bankCodeThe 3 digit bank code representing the destination bank
bankNameThe name of the destination bank
accountNumberThe beneficiary account number
accountNameThe name tied to the account in the destination bank
currency (M)The currency of the transaction being initialized. "NGN"
statusThe status  of a single transfer request. (SUCCESS, FAILED, PENDING, OTP_EMAIL_DISPATCH_FAILED, PENDING_AUTHORIZATION)
batchStatusThe status of the processing of the entire Batch. (FAILED_ON_ACCOUNTS_VALIDATION, OTP_EMAIL_DISPATCH_FAILED, PENDING, PENDING_AUTHORIZATION, AWAITING_PROCESSING, IN_PROGRESS ,COMPLETED)
totalTransactionsThe total number of transactions in the batch.
totalAmountThe total amount deducted for all the transactions in the batch
feeThe total transaction fees deducted for a single transaction
totalFeeThe total transaction fees deducted for all the transactions in the batch.
failedCountTotal number of failed transactions in the batch
successfulCountTotal number of successful transactions in the batch
pendingCountTotal number of pending transactions in the batch