GET
/
payout
/
v1
/
getBeneficiary
/
{beneId}
curl --request GET \
  --url https://payout-api.cashfree.com/payout/v1/getBeneficiary/{beneId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>'
{
  "status": "SUCCESS",
  "subCode": "200",
  "message": "Details of beneficiary",
  "data": {
    "beneId": "JOHN18011",
    "name": "John",
    "groupName": "DEFAULT",
    "email": "johndoe@cashfree.com",
    "phone": "9876543210",
    "address1": "ABCavenue",
    "address2": "",
    "city": "Bangalore",
    "state": "Karnataka",
    "pincode": "0",
    "bankAccount": "00001111222233",
    "ifsc": "HDFC0000001",
    "status": "VERIFIED"
  }
}

Headers

Authorization
string
required

Bearer auth token

Content-Type
string
required

application/json

Path Parameters

beneId
string
required

Unique Beneficiary ID of the beneficiary for which you want to view the details.

Response

200
application/json
200
status
string
Example:

"SUCCESS"

subCode
string
Example:

"200"

message
string
Example:

"Details of beneficiary"

data
object

Was this page helpful?