cURL
curl --request GET \ --url https://payout-api.cashfree.com/payout/v1/getValidationStatus/bank \ --header 'Authorization: <authorization>' \ --header 'Content-Type: <content-type>'
{ "status": "SUCCESSS", "subCode": 200, "message": "Bank account details verified successfully", "data": { "bvRefId": 123456, "nameAtBank": "JOHN DOE", "accountExists": "YES", "bankAccount": 26291800001191, "ifsc": "YESB0000262", "utr": 12341234123, "nameMatchScore": 100, "nameMatchResult": "DIRECT_MATCH" } }
Use this API to get the statuses of the bank validation request by providing the bvRefId or userId.
Bearer Auth Token
application/json
It is the bank verification reference ID.
"1628114"
It is the unique ID created to identify the bank verification user.
"A1011"
Accepted
It represents the status of the API request.
"SUCCESSS"
It represents the sub code of the API request.
200
It represents the message of the API request.
"Bank account details verified successfully"
Show child attributes
It represents the bank verification reference ID.
123456
It represents the name of the bank account holder as per the bank registration.
"JOHN DOE"
It represents the existence information of the bank account.
"YES"
It represents the bank account number.
26291800001191
It represents the IFSC information.
"YESB0000262"
It represents the UTR number.
12341234123
It represents the name match score.
100
It represents the result of the name match.
"DIRECT_MATCH"
Was this page helpful?