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"
  }
}
This API will be retired soon. Please plan to migrate to the latest version, Beneficiary V2.

Please use this Authorization token in headers to call any payout API (Refresh this page if the token is expired)

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

The response is of type object.