cURL
curl --request POST \ --url https://payout-api.cashfree.com/payout/v1/selfWithdrawal \ --header 'Authorization: <authorization>' \ --header 'Content-Type: <content-type>' \ --data ' { "withdrawalId": "<string>", "amount": 123, "remarks": "<string>" } '
{ "status": "SUCCESS", "message": "Request submitted successfully. Withdrawal Id : W55", "statusCode": "200" }
Use this API to request a self withdrawal at Cashfree. Self withdrawal is allowed a maximum of 3 times a day. The API response will either result in an ERROR or SUCCESS response. The status of the withdrawal request is available on the dashboard.
Bearer auth token
application/json
Unique identifier for the withdrawal, alphanumeric allowed (50 character limit)
Amount to be withdrawn, decimal (>= 1.00)
Remarks, if any. Alphanumeric and white space (70 character limit)
200
"SUCCESS"
"Request submitted successfully. Withdrawal Id : W55"
"200"
Was this page helpful?