---
title: "List tickets for a contact"
method: GET
path: "/v1/contacts/{id}/tickets"
tags: ["contacts"]
---

# List tickets for a contact

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

Convenience endpoint that filters the ticket queue down to tickets for a single contact.

## Path parameters

- `id` string, required — Contact id.

## Query parameters

- `workspace_id` string — Optional workspace override. If omitted, Conduit resolves the contact's workspace automatically.
- `limit` integer
- `cursor` string
- `order` 'asc' | 'desc'
- `status` 'open' | 'new' | 'pending' | 'resolved' | 'closed' — `open` returns actionable tickets (`new` + `pending`).
- `waiting_on` 'team' | 'customer' | 'third_party' | 'none'
- `channel` string

## Response `200`

Contact tickets

- object — Cursor-paginated tickets response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `contact_id` string, required
    - `conversation_id` string, required
    - `channel` string, required
    - `status` 'new' | 'pending' | 'resolved' | 'closed', required
    - `waiting_on` string, nullable, required
    - `inbox_type_id` string, required
    - `subject` string, nullable, required
    - `summary` string, nullable, required
    - `ai_paused` boolean, required
    - `assignee` object, nullable, required
      - `id` string, required
      - `name` string, required
      - `email` string, required
      - `picture_url` string, nullable, required
    - `follow_up_at` string, nullable, required
    - `last_message_at` string, nullable, required
    - `last_message_preview` string, nullable, required
    - `created_at` string, required
    - `updated_at` string, required
    - `call_transcript_id` 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)
