> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Stakeholder Documents

> **GET** `/v2/accounts/:account_id/stakeholders/:stakeholder_id/documents`

Use this endpoint to fetch the files uploaded for a stakeholder. Know about the [various error responses](/api/partners/errors) for this API.

### Request

````cURL: Curl theme={null}
curl -X GET https://api.razorpay.com/v2/accounts/acc_GMh5YcLv9iGMKf/stakeholders/sth_GOUCFN3nE0XlYq/documents \
-u  \

```java: Java
RazorpayClient razorpay = new RazorpayClient("[ACCESS_TOKEN]");

String accoundId = "acc_LryDIBIjBDbOWy";
String stakeholderId = "sth_M0zjeiVOLRJRPW";

Stakeholder stakeholder = instance.stakeholder.fetchStakeholderDoc(accoundId, stakeholderId);

```php: PHP
$api = new Api(null, null, "");

$accountId = "acc_00000000000001";
$stakeholderId = "sth_00000000000001";

$stakeholders = $api->account->fetch($accountId)->stakeholders();

$stakeholders->fetchStakeholderDoc($stakeholderId);

```javascript: Node.js

const instance = new Razorpay({
  oauthToken: "",

const accountId = "acc_GP4lfNA0iIMn5B";
const stakeholderId = "sth_GOQ4Eftlz62TSL";

instance.stakeholders.fetchStakeholderDoc(accountId, stakeholderId);

```ruby: Ruby
require "razorpay"
Razorpay.setup('ACCESS_TOKEN')
account_id = "acc_0000000000001"
stakeholder_id = "sth_00000000000001"

Razorpay::Stakeholder.fetch_stakeholder_doc(account_id, stakeholder_id)
````

### Response

```json: Success theme={null}
{
  "individual_proof_of_address": [
    {
      "type": "aadhar_front",
      "document_id": "doc_GOgDZbg848e6bI"
    },
    {
      "type": "aadhar_back",
      "document_id": "doc_GOVuOa8PCgXlEA"
    }
  ]
}
```

### Parameters

`account_id` *mandatory*
: `string` The unique identifier of a sub-merchant account generated by Razorpay. For example, `acc_GMh5YcLv9iGMKf`.

`stakeholder_id` *mandatory*
: `string` The unique identifier of the stakeholder generated by Razorpay. For example, `sth_GOUCFN3nE0XlYq`.

### Parameters

`individual_proof_of_address`
: `array` The document submitted as individual proof of address.

`type`
: `string` The type of document. Possible values:

* `voter_id_back`

* `voter_id_front`

* `aadhar_front`

* `aadhar_back`

* `passport_front`

* `passport_back`

`document_id`
: `string` The id generated once the business proof document is uploaded.
