GET
/
payout
/
v1
/
validation
/
upiDetails
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1/validation/upiDetails \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "status": "SUCCESSS",
  "subCode": 200,
  "message": "Bank account details verified successfully",
  "data": {
    "nameAtBank": "JOHN DOE",
    "accountExists": "YES"
  }
}

Headers

Authorization
string
required

Bearer Auth Token

Content-Type
string
required

application/json

Query Parameters

name
string

It is the name of the account to be validated. Only alphabets and white spaces are accepted. A maximum of 100 characters are allowed.

Example:

"Harshit"

vpa
string
required

It is the VPA detail of the account to be validated. Only alphanumeric, period (.), hyphen (-), at sign (@) and underscore ( _ ) are accepted. A maximum of 100 characters are allowed. Note that underscore ( _ ) and period (.) get accepted before and after at sign (@), but hyphen (-) gets accepted only before the at sign (@)

Example:

"success@upi"

Response

200
application/json
Accepted
status
string

It represents the status of the API request.

Example:

"SUCCESSS"

subCode
string

It represents the sub code of the API request.

Example:

200

message
string

It represents the message of the API request.

Example:

"Bank account details verified successfully"

data
object

It contains the UPI information.