POST
/
bank-account
/
async
curl --request POST \
  --url https://sandbox.cashfree.com/verification/bank-account/async \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "bank_account": "026291800001191",
  "ifsc": "YESB0000262",
  "name": "John Doe",
  "user_id": "test",
  "phone": "9999999999"
}'
{
"reference_id": 123,
"user_id": "test",
"account_status": "RECEIVED",
"account_status_code": "VALIDATION_IN_PROGRESS"
}

Authorizations

x-client-id
string
header
required

Client ID. You can find your ID in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret key in the Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if IP is not whitelisted.

Body

application/json

Find the request parameters to verify bank account information using the async method

The body is of type object.

Response

200
application/json

Success response for Bank Account Verification Async V2

The response is of type object.