POST
/
bank-account
/
sync
Bank Account Verification Sync V2
curl --request POST \
  --url https://sandbox.cashfree.com/verification/bank-account/sync \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "bank_account": "26291800001191",
  "ifsc": "YESB0000001",
  "name": "John Doe",
  "phone": "9999999999"
}'
{
  "reference_id": 34,
  "name_at_bank": "BHARATHTEST GKUMARUT",
  "bank_name": "YES BANK",
  "city": "MUMBAI",
  "branch": "SANTACRUZ, MUMBAI",
  "micr": 400532038,
  "name_match_score": "90.00",
  "name_match_result": "GOOD_PARTIAL_MATCH",
  "account_status": "VALID",
  "account_status_code": "ACCOUNT_IS_VALID",
  "utr": "404223241811",
  "ifsc_details": {
    "bank": "YES BANK",
    "ifsc": "YESB0000262",
    "ifsc_subcode": "YESB0",
    "address": "GROUND FLOOR, 123, ABC CIRCLE, XYZ MAIN ROAD, MUMBAI - 560098",
    "city": "MUMBAI",
    "state": "MAHARASHTRA",
    "branch": "SANTACRUZ, MUMBAI",
    "category": "SUB_MEMBER",
    "swift_code": "ABCDINBBDCL",
    "micr": 560751026,
    "nbin": 1234
  }
}

Cashfree does not support the verification of Deutsche Bank and Paytm Payments Bank accounts.

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if IP is not whitelisted.

Body

application/json

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

The body is of type object.

Response

200
application/json

Success response for Bank Account Verification Sync V2

The response is of type object.