---
title: "List all recipient attachments"
method: GET
path: "/recipients/attachments"
tags: ["Recipients"]
---

# List all recipient attachments

`GET /recipients/attachments`

Retrieve a paginated list of all recipient tax form attachments across all recipients in the organization. Use cursor parameters (start_after, end_before) for pagination.

## Query parameters

- `limit` integer — Maximum number of results to return. Allowed range: 1 to 1000. Defaults to 1000
- `start_after` string, uuid — The ID of the recipient attachment to start the page after (exclusive). When provided, results will begin with the recipient attachment immediately following this ID. Use this for standard forward pagination to get the next page of results. Cannot be combined with end_before.
- `end_before` string, uuid — The ID of the recipient attachment to end the page before (exclusive). When provided, results will end just before this ID and work backwards. Use this for reverse pagination or to retrieve previous pages. Cannot be combined with start_after.
- `order` 'asc' | 'desc' — Sort order. Can be 'asc' or 'desc'. Defaults to 'asc'

## Response `200`

- RecipientsAttachmentsPaginatedResponse
  - `attachments` RecipientAttachmentWithId[], required — List of attachments with recipient IDs
    - `fileName` string, required — Name of the uploaded file
    - `formType` 'w9' | 'w8BEN' | 'w8BENE' | 'unknown', nullable — The tax form type (W-9, W-8BEN, W-8BEN-E, or Unknown)
    - `id` string, uuid, required — The unique identifier for this attachment
    - `recipientId` string, uuid, required — The external ID of the recipient this attachment belongs to
    - `uploadedAt` string, yyyy-mm-ddThh:MM:ssZ, required — Timestamp when the attachment was uploaded
    - `url` string, required — Presigned URL to download the attachment (valid for 12 hours)
  - `page` object, required — Pagination information
    - `nextPage` string, uuid — ID for the recipient tax form attachment
    - `previousPage` string, uuid — ID for the recipient tax form attachment
  - `total` integer, required — Total number of attachments in the current page

## Other responses

- `400` — Invalid `order` or `end_before` or `start_after` or `limit`

---

[API](https://skmtc.net/mercurytechnologies/apis/mercury-api.md) · [All operations](https://skmtc.net/mercurytechnologies/apis/mercury-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mercurytechnologies/mercury-api/revisions/0bdf4a496e03/schema)
