POST
/
payout
/
v1
/
bulkValidation
/
bankDetails
curl --request POST \
  --url https://payout-api.cashfree.com/payout/v1/bulkValidation/bankDetails \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "bulkValidationId": "A45",
  "entries": [
    {
      "name": "John Doe",
      "bankAccount": 11020001770,
      "ifsc": "HDFC0000001",
      "phone": 9999912345
    }
  ]
}'
{
  "status": "SUCCESSS",
  "subCode": 200,
  "message": "Bulk Validation requested successfully.",
  "data": {
    "bulkValidationId": "testid1"
  }
}
This API will be retired soon. Please plan to migrate to the latest version, Bulk Bank Account Verification V2.

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Body

application/json

Response

200
application/json

Accepted

The response is of type object.