> For the complete documentation index, see [llms.txt](https://dev.guardian.hedera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.guardian.hedera.com/developer-tools-and-resources/api-reference/apis-related-to-discontinuing-policy-workflow/get-policy-documents.md).

# Get Policy Documents

## Get policy documents.

<mark style="color:blue;">`GET`</mark> `/policies/{policyId}/documents`

Get policy documents. Only users with the Standard Registry role are allowed to make the request.

#### Path Parameters

| Name                                       | Type   | Description        |
| ------------------------------------------ | ------ | ------------------ |
| policyId<mark style="color:red;">\*</mark> | String | Policy identifier. |

#### Query Parameters

| Name                                              | Type    | Description             |
| ------------------------------------------------- | ------- | ----------------------- |
| pageSize<mark style="color:red;">\*</mark>        | String  | Page size.              |
| pageIndex<mark style="color:red;">\*</mark>       | String  | Page index.             |
| type<mark style="color:red;">\*</mark>            | String  | Document type.          |
| includeDocument<mark style="color:red;">\*</mark> | Boolean | Include document field. |

{% tabs %}
{% tab title="200: OK Documents" %}

```
headers:
            X-Total-Count:
              description: Total documents count.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```
content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorDTO'
```

{% endtab %}
{% endtabs %}
