# View Beneficiary Detail

{% tabs %}
{% tab title="Production" %}
​ <https://payout.payumoney.com/payout/beneficiary>
{% endtab %}

{% tab title="Test" %}
​ <https://test.payumoney.com/payout/beneficiary>
{% endtab %}
{% endtabs %}

## **Request Header Params** <a href="#request-header-params" id="request-header-params"></a>

| **Key**          | **Description**                                   | **Data type** | **Mandatory** | **possible Values**    |
| ---------------- | ------------------------------------------------- | ------------- | ------------- | ---------------------- |
| Authorization    | Access token generated earlier.                   | String        | Yes           | Bearer {access\_token} |
| payoutMerchantId | This is the merchant id provided while onboarding | String        | Yes           | ​                      |

payoutMerchantId is different from payuMoneyMerchant Id, please use the correct one for seamless experience

## **Request Params** <a href="#request-params" id="request-params"></a>

| **Key**       | **Description**                        | **Data type** | **Mandatory** | **possible Values** |
| ------------- | -------------------------------------- | ------------- | ------------- | ------------------- |
| beneficiaryId | Beneficiary If returned while creation | Long          | Mandatory     | ​                   |

## **Examples** <a href="#examples" id="examples"></a>

**Sample Request/Response for a single transfer initiation:**

Content-Type : application/json

Method : GET

**Test Environment Request Body:**

```
curl --location --request GET \
'https://https://test.payumoney.com/payout/beneficiary?beneficiaryId=14' \ 
--header 'payoutMerchantId: 1111167' \ 
--header 'Authorization: 1d7e2db3cce25cb3a0a8753f18663cceb4e060538c118498f3f18cf6cb7c7f9b' 
```

{% tabs %}
{% tab title="Success" %}

```
{ 

    "status": 0, 
    "msg": "Beneficiary Created with Id :16", 
    "code": null, 
    "data": { 
        "beneficiaryId": 16, 
        "name": "Deepak", 
        "email": "deepak@gmail.com", 
        "mobile": "1234567890", 
        "accountNo": "12", 
        "ifsc": "ICIC1234567", 
        "vpa": null, 
        "merchantId": 1111167, 
        "isValid": true, 
        "addedOn": "2020-06-22T08:13:37.000+0000", 
        "updatedOn": "2020-06-22T08:13:37.000+0000", 
        "isVerified": null, 
        "nameWithBank": null, 
        "cardNo": null 
} 
```

{% endtab %}

{% tab title="Failure" %}

```
```

{% endtab %}
{% endtabs %}

​[<br>](https://payu-docs.gitbook.io/payouts-integration/get-account-details)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://payu-docs.gitbook.io/payouts-integration/beneficiary-management/view-beneficiary-detail.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
