# 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 %}
