---
title: "List ticket notes"
method: GET
path: "/v1/tickets/{id}/notes"
tags: ["tickets"]
---

# List ticket notes

`GET /v1/tickets/{id}/notes`

Returns internal notes attached to a ticket.

## Path parameters

- `id` string, required — Ticket id.

## Query parameters

- `workspace_id` string — Optional workspace override. If omitted, Conduit resolves the ticket's workspace automatically.
- `limit` integer
- `cursor` string
- `order` 'asc' | 'desc'

## Response `200`

Ticket notes

- object — Cursor-paginated ticket notes response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `ticket_id` string, required
    - `contact_id` string, required
    - `body` string, required
    - `author` object, required
      - `user_id` string, nullable, required
      - `name` string, nullable, required
      - `email` string, nullable, required
      - `picture_url` string, nullable, required
    - `created_at` string, required
    - `updated_at` string, nullable, required
    - `attachments` object[], required
      - `url` string, required — Convex storage URL for the attachment. Long-lived (no signature expiry); fetched directly without auth.
      - `content_type` string, required
      - `name` string, nullable, required
  - `next_cursor` string, nullable, required
  - `has_more` boolean, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/conduit/apis/conduit-api.md) · [All operations](https://skmtc.dev/conduit/apis/conduit-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/conduit/conduit-api/revisions/3ad7e17f96ad/schema)
