> For the complete documentation index, see [llms.txt](https://docs.faspay.co.id/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.faspay.co.id/merchant-integration/api-reference-1/sendme/inquiry-name.md).

# Inquiry Name

This service is used by partners/users for Inquiry name of account bank that has been registered. Use this relative URL for generating a signature :

* Relative URL : **/account/api/ inquiry\_name/< va\_partner >/< va\_number >**

> VA number means VA number under partner that has been registered

And also need to create a **signature** and use **request header**.

{% tabs %}
{% tab title="Response body" %}

<table><thead><tr><th width="280">Parameter</th><th width="150">Data Type</th><th width="150">M/O/C</th><th>Description</th></tr></thead><tbody><tr><td>virtual_account</td><td>Numeric (20)</td><td>Mandatory</td><td>VA partner</td></tr><tr><td>beneficiary_virtual_account</td><td>Alphanumeric</td><td>Mandatory</td><td>VA of beneficiary account</td></tr><tr><td>beneficiary_account_number</td><td>Numeric (255)</td><td>Mandatory</td><td>Bank account no</td></tr><tr><td>beneficiary_account_name</td><td>Alphanumeric</td><td>Mandatory</td><td>Name of bank account</td></tr><tr><td>status</td><td>Numeric (1)</td><td>Mandatory</td><td>Status inquiry (2 = success)</td></tr><tr><td>message</td><td>Alphanumeric</td><td>Mandatory</td><td>Message description</td></tr><tr><td>response_code</td><td>Numeric (2)</td><td>Mandatory</td><td>Response code from bank (00 = success)</td></tr><tr><td>response_desc</td><td>Alphanumeric (32)</td><td>Mandatory</td><td>Response desc from bank</td></tr></tbody></table>
{% endtab %}

{% tab title="Sample response" %}

```json
{
    "virtual_account": "9920000028",
    "beneficiary_virtual_account": "9920000073",
    "beneficiary_account_number": "1020006137993",
    "beneficiary_account_name": "IN000018000680854",
    "status": "2",
    "message": "Success",
    "response_code": "00",
    "response_desc": "success"
}
```

{% endtab %}
{% endtabs %}
