> ## Documentation Index
> Fetch the complete documentation index at: https://docs.annature.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve attachments

Retrieves all attachments associated with a specific field.

This endpoint is used to access uploaded files submitted by recipients during the signing process — specifically for fields of type `attachment`. It returns metadata for each file, along with a temporary download link to the original upload.

Attachments are available only after the recipient has completed the field. This endpoint is only applicable to fields with a `type` of `attachment`; using it on other field types will return an empty array.

## Parameters

<ParamField path="id" required>
  The unique identifier of the field whose attachments you want to retrieve.
</ParamField>

<ParamField path="envelope_id" required>
  The unique identifier of the envelope that the field belongs to.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  GET /v1/fields/:id/attachments
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  [{
    "id": "5f66f4705e35d5c49d2a7af7a896b8b4",
    "original": "https://annature..",
    "name": "Drivers license.png",
    "type": "image/png",
    "size": 115226,
    "created": "2019-12-17T05:30:00Z"
  }]
  ```
</ResponseExample>
