POST
/
payout
/
v1
/
requestTransfer
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>"
}'
"// Case 1\n{\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// Case 2\n{\n  \"status\":\"ERROR\",\n  \"subCode\":\"404\",\n  \"message\":\"Beneficiary does not exist\"\n}\n\n// Case 3\n\n{\n  \"status\":\"ERROR\",\n  \"subCode\":\"422\", \n  \"message\":\"Remarks can have only numbers,alphabets and whitespaces\"\n}"

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Body

application/json

Response

200
application/json

200

The response is of type any.