GET
/
transfers
/
batch
Get Batch Transfer Status V2
curl --request GET \
  --url https://sandbox.cashfree.com/payout/transfers/batch \
  --header 'x-api-version: <x-api-version>' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
"batch_transfer_id": "test_batch_transfer_id",
"cf_batch_transfer_id": "123456",
"status": "RECEIVED"
}

Authorizations

x-client-id
string
header
required

Client ID. You can find your app id in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret in the Merchant Dashboard.

Headers

x-api-version
string
default:2024-01-01
required

It is the API version to be used. The accepted format is YYYY-MM-DD.

x-request-id
string

It is the request ID for the API call. This ID can be used to resolve tech realted issues. Communicate this in your tech related queries to Cashfree Payments.

x-cf-signature
string

Signature to be sent if IP is not whitelisted

Query Parameters

cf_batch_transfer_id
string

It is the unique ID created by Cashfree Payments. You receive it in the response of the initiated batch transfer request. (Either cf_batch_transfer_id or batch_transfer_id is mandatory)

batch_transfer_id
string

It is the unique ID you created to identify the batch transfer request.

Response

200
application/json

OK

Batch Transfer Status V2 Response