curl --request POST \
--url https://payout-api.cashfree.com/payout/v1.2/requestBatchTransfer \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"batchTransferId": "<string>",
"batchFormat": "<string>",
"deleteBene": true,
"batch": [
"<string>"
],
"paymentInstrumentId": "<string>"
}'
"{\n \"status\": \"SUCCESS\",\n \"subCode\": \"200\",\n \"message\": \"Batch Transfer requested successfully. Please check later for processing status.\",\n \"data\": {\n \"referenceId\": 486\n }\n}"
Use this API to create transfers to multiple beneficiaries. This API accepts an array of transfer objects under the batch field.
curl --request POST \
--url https://payout-api.cashfree.com/payout/v1.2/requestBatchTransfer \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"batchTransferId": "<string>",
"batchFormat": "<string>",
"deleteBene": true,
"batch": [
"<string>"
],
"paymentInstrumentId": "<string>"
}'
"{\n \"status\": \"SUCCESS\",\n \"subCode\": \"200\",\n \"message\": \"Batch Transfer requested successfully. Please check later for processing status.\",\n \"data\": {\n \"referenceId\": 486\n }\n}"
200
The response is of type any
.
Was this page helpful?