GET
/
payout
/
v1.2
/
getBatchTransferStatus
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1.2/getBatchTransferStatus \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Data retrieved successfully",
  "data": {
    "rowCount": 2,
    "referenceId": 1582,
    "paymentInstrumentId": "CASHFREE_1",
    "transfers": [
      {
        "beneId": "999999999918875",
        "transferId": "PTM_00121241112",
        "referenceId": 1523969542,
        "bankAccount": "9999999999",
        "ifsc": "PYTM0000001",
        "amount": "12.00",
        "remarks": "",
        "status": "SUCCESS",
        "utr": "W1532082925",
        "addedOn": "2018-07-20T00:00:00.000Z",
        "processedOn": "2018-07-20T00:00:00.000Z"
      }
    ]
  }
}

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Query Parameters

batchTransferId
string
required

Batch transfer ID to fetch the status

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Data retrieved successfully"

data
object

Was this page helpful?