Skip to main content
GET
/
v1
/
tickets
/
{id}
/
notes
List ticket notes
curl --request GET \
  --url https://api.conduit.ai/v1/tickets/{id}/notes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "nt77c0dy0mgdpzmqz6tesry8w184002s",
      "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "ticket_id": "xd88mkfbmxgckpeyzs8m9r9d3d843me3",
      "contact_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
      "body": "Guest asked for a manager follow-up tomorrow.",
      "author": {
        "user_id": "m48k3v7p2q9x5t1w8r6n4j0y3u2i5o7a",
        "name": "Alex M",
        "email": "alex@example.com",
        "picture_url": null
      },
      "created_at": "2026-04-03T03:15:04.000Z",
      "updated_at": null
    }
  ],
  "next_cursor": null,
  "has_more": false
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Ticket id.

Example:

"xd88mkfbmxgckpeyzs8m9r9d3d843me3"

Query Parameters

workspace_id
string

Optional workspace override. If omitted, Conduit resolves the ticket's workspace automatically.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

limit
integer
Required range: 1 <= x <= 100
cursor
string
order
enum<string>
Available options:
asc,
desc

Response

Ticket notes

Cursor-paginated ticket notes response.

data
object[]
required
next_cursor
string | null
required
has_more
boolean
required