POST
/
payout
/
v1.2
/
requestTransfer
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1.2/requestTransfer \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "beneId": "<string>",
  "amount": 123,
  "transferId": "<string>",
  "transferMode": "<string>",
  "paymentInstrumentId": "<string>",
  "remarks": "<string>"
}'
"{\n  \"status\":\"SUCCESS\", \n  \"subCode\":\"200\", \n  \"message\":\"Transfer completed successfully\", \n  \"data\": \n  {\n    \"referenceId\":\"10023\",\n    \"utr\":\"P16111765023806\",\n    \"acknowledged\": 1\n  }\n}\n\n{\n  \"status\":\"ERROR\",\n  \"subCode\":\"404\",\n  \"message\":\"Beneficiary does not exist\"\n}\n\n{\n  \"status\":\"ERROR\",\n  \"subCode\":\"422\", \n  \"message\":\"Remarks can have only numbers,alphabets and whitespaces\"\n}"
This API will be retired soon. Please plan to migrate to the latest version, Transfers V2.

Once you trigger the requestTransfer API, the transfer to the beneficiary account will be attempted immediately and the bank’s reference number will be returned in the API response. The median time for the response is 2 to 5 seconds.

Please use this Authorization token in headers to call any payout API (Refresh this page if the token is expired)

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Body

application/json
beneId
string
required

Beneficiary Id. Alphanumeric characters allowed.

amount
number
required

amount to be transferred. Decimals allowed (>= 1.00)

transferId
string
required

A unique Id to identify this transfer. Alphanumeric and underscore (_) allowed (40 character limit).

transferMode
string

It is the mode of transfer. Allowed values are: banktransfer, neft, imps, rtgs, upi, paytm, and amazonpay. The default transferMode is banktransfer.

paymentInstrumentId
string

Specify the fund source ID from where you want the amount to be debited.

remarks
string

Additional remarks, if any. Alphanumeric and white spaces allowed (70 characters limit).

Response

200
application/json
200

The response is of type any.