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

# List helpdesk tickets for a contact

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

Returns helpdesk tickets mirrored from external helpdesk systems that are associated with 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 — Page size. Defaults to 20. Max 100.
- `cursor` string
- `order` 'asc' | 'desc' — Sort direction. Defaults to `desc`.
- `status` string — Filter by helpdesk status. Values depend on the upstream helpdesk system.
- `channel` string — Filter by the channel the ticket arrived on.
- `connection_id` string — Filter to tickets from a single helpdesk connection (Zendesk/Pylon/Plain instance).

## Response `200`

Contact helpdesk tickets

- object — Cursor-paginated helpdesk tickets response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `contact_id` string, nullable, required
    - `ticket_id` string, nullable, required — Conduit inbox ticket id when the helpdesk ticket has been linked to a native conversation, otherwise null.
    - `connection_id` string, required
    - `external_ticket_id` string, required
    - `external_group_id` string, nullable, required
    - `external_assignee_id` string, nullable, required
    - `subject` string, required
    - `description` string, nullable, required
    - `status` string, required
    - `priority` string, nullable, required
    - `type` string, nullable, required
    - `channel` string, nullable, required
    - `tags` string[], required
    - `requester` object, required
      - `external_id` string, required
      - `name` string, required
      - `email` string, nullable, required
    - `last_external_update_at` string, required
    - `created_at` string, 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)
