---
title: "List Run Attachments"
method: GET
path: "/v1/run-attachments"
tags: ["run-attachments"]
---

# List Run Attachments

`GET /v1/run-attachments`

List all run attachments for the authenticated organization.

Supports pagination and filtering by run ID and attachment type.

## Query parameters

- `run_id` string, uuid, nullable — Filter by run ID
- `attachment_type` 'input' | 'output'
- `skip` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseRunAttachmentResponse
  - `items` RunAttachmentResponse[], required
    - `filename` string, required
    - `content_type` string, required
    - `attachment_type` 'input' | 'output', required
    - `target_path` string, nullable
    - `cleanup_imports_after_run` boolean
    - `id` string, uuid, required
    - `user_id` string, uuid, nullable
    - `organization_id` string, nullable
    - `run_id` string, uuid, required
    - `size_bytes` integer, required
    - `storage_path` string, required
    - `expires_at` string, date-time, nullable
    - `created_at` string, date-time, required
  - `total` integer, required
  - `skip` integer, required
  - `limit` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/cyberdesk-hq/apis/cyberdesk-cloud.md) · [All operations](https://skmtc.net/cyberdesk-hq/apis/cyberdesk-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cyberdesk-hq/cyberdesk-cloud/versions/830d2f48963d/schema)
