# GET ALL DOCUMENTS

Retrieves all uploaded documents associated to a request.

Endpoint: GET /api/v1/requests/{id}/pl_get_documents
Version: v1

## Path parameters:

  - `id` (string, required)
    The unique identifier of the Request

## Response 200 fields (application/json):

  - `pk` (string)
    The document database id

  - `document` (string)
    The document content in Base64 format

  - `type` (string)
    The document type

## Response 404 fields (application/json):

  - `code` (string)
    The response status code

  - `id` (string)
    The response status id

  - `error` (string)
    The response status message


