---
title: "List contact attachments"
method: GET
path: "/v1/contacts/{id}/attachments"
tags: ["Contacts"]
---

# List contact attachments

`GET /v1/contacts/{id}/attachments`

Retrieve a paginated list of attachments (documents) for a specific contact. Each attachment includes a public document URL that can be used directly for download or rendering.

## Path parameters

- `id` string, uuid, required

## Query parameters

- `limit` integer
- `page` integer

## Headers

- `api-token` string, required

## Response `200`

A paginated list of contact attachments

- object
  - `status` integer — Response status
  - `totalCount` integer — Total items based on current filters
  - `page` integer — Current page
  - `totalPages` integer — Total pages based on current filters
  - `hasNext` boolean — Indicates that has next page
  - `hasPrevious` boolean — Indicates that has previous page
  - `data` ContactAttachment[]
    - `id` string, uuid
    - `contact_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `uploaded_by` object
      - `id` string, uuid
      - `first_name` string
      - `last_name` string
    - `document` object
      - `id` string, uuid
      - `name` string
      - `file_name` string
      - `url` string, uri
      - `extension` string
      - `file_size` integer — File size in bytes

## Other responses

- `400` — Bad Request
- `404` — Contact not found

---

[API](https://skmtc.net/clint/apis/clint-api.md) · [All operations](https://skmtc.net/clint/apis/clint-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clint/clint-api/versions/12b8f9eff943/schema)
