Skip to main content
GET
/
v1
/
tickets
/
{id}
/
notes
/
{note_id}
Get ticket note
curl --request GET \
  --url https://api.conduit.ai/v1/tickets/{id}/notes/{note_id} \
  --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
  }
}

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"

note_id
string
required

Ticket note id.

Example:

"nt77c0dy0mgdpzmqz6tesry8w184002s"

Query Parameters

workspace_id
string

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

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Ticket note

Single ticket note response.

data
object
required