POST
/
payout
/
v1.2
/
requestAsyncTransfer
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1.2/requestAsyncTransfer \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "beneId": "<string>",
  "amount": 123,
  "transferId": "<string>",
  "transferMode": "<string>",
  "paymentInstrumentId": "<string>",
  "remarks": "<string>"
}'
{
  "status": "ACCEPTED",
  "subCode": "201",
  "message": "Transfer Initiated",
  "data": {
    "referenceId": "107260"
  }
}

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Body

application/json

Response

200
application/json
Response indicating transfer initiation or error status

The response is of type object.