Skip to main content
POST
/
payout
/
v1
/
requestTransfer
Standard Transfer Sync
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1/requestTransfer \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "beneId": "<string>",
  "amount": 123,
  "transferId": "<string>",
  "transferMode": "<string>",
  "remarks": "<string>"
}
'
{
  "status": "ERROR",
  "subCode": "403",
  "message": "APIs not enabled. Please fill out the [Support Form](https://merchant.cashfree.com/merchants/landing?env=prod&raise_issue=1)"
}

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<float>
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.

remarks
string

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

Response

200