Check Transfer Status API

It will return the status of the transfers initiated by the merchant.

** Result are sorted on latest first basis.

Request Header Params

payountMerchantId is different from payumoney merchant id, please check payouts dashboard or call customer support if you don’t know your payoutsMerchantID

Request Params

Example

Sample Request :

curl -X POST \
 https://test.payumoney.com/payout/payment/listTransactions \
 -H 'authorization: Bearer 2678f236346281e6029e3430da1a721af29bb3546d6acbc27e6aadd7fca72605' \
 -H 'cache-control: no-cache' \
 -H 'content-type: application/x-www-form-urlencoded' \
 -H 'payoutmerchantid: 1111122' \
 -d 'transferStatus=QUEUED&from=01%2F01%2F2019&do=01%2F01%2F2019&page=1&pageSize=100&merchantRefId=&batchId=1'

Use the content type as 'application/x-www-form-urlencoded' to avoid erro

Sample Response :

{
 "status": 0,
 "msg": null,
 "code": null,
 "data": {
    "noOfPages": 1,
    "totalElements": 2,
    "currentPage": 0,
    "totalAmount": 0,
    "succesTxn": 0,
    "pendingTxn": 0,
    "transactionDetails": [
          {
          "txnId": 1165,
          "batchId": "Test",
          "merchantRefId": "7891247",
          "purpose": "test",
          "amount": 1.1,
          "txnStatus": "FAILED",
          "txnSubStatus" : "REVERSED",
          "txnDate": "2020-02-22T10:44:18.000+0000",
          "payuTransactionRefNo": "PAYOUT1582368257721B3aHZrZ7uql",
          "beneficiaryName": "shishir",
          "msg": "Failed",
          "responseCode": "0",
          "transferType": "NEFT",
          "bankTransactionRefNo": "PAYOUT1582368257721B3aHZrZ7uql",
          "nameWithBank": null,
          "lastStatusUpdateDate": "2020-02-22T10:45:02.000+0000"
           "succeedOn": ""
          },
          {
          "txnId": 1165,
          "batchId": "Test",
          "merchantRefId": "7891247",
          "purpose": "test",
          "amount": 1.1,
          "txnStatus": "SUCCESS",
          "txnSubStatus" : null,
          "txnDate": "2020-02-22T10:44:18.000+0000",
          "payuTransactionRefNo": "PAYOUT1582368257721B3aHZrZ7uql",
          "beneficiaryName": "shishir",
          "msg": "Failed",
          "responseCode": "0",
          "transferType": "NEFT",
          "bankTransactionRefNo": "PAYOUT1582368257721B3aHZrZ7uql",
          "nameWithBank": null,
          "lastStatusUpdateDate": "2020-02-22T10:45:02.000+0000"
           "succeedOn": "2020-02-22T10:45:02.000+0000"
          }
       ]
    }
 }

Response Params

Transaction Status Meanings

Response Code in case of failure.

Last updated