Skip to main content
GET
Poll a v2 conversation for its status and the message tail since a seq

Authorizations

x-api-key
string
header
required

Path Parameters

conversation_id
string<uuid>
required

Query Parameters

since_seq
integer
default:-1

Watermark: return only messages with seq > since_seq (exclusive). Message seqs are 0-based, so seed with the default -1 to fetch from the very start (includes seq 0), then pass the response's next_seq back.

Required range: x >= -1
include_evidence
boolean
default:false

[ENG-670 T3] Attach each message's evidence package (the KB sources shown to the model). Off by default — the poll DEFERS the large citations column; opt in to load and project it.

evidence_view
enum<string>
default:full

Serialization view when include_evidence=true. Poll default is 'full' (staff/audit), matching the transcript page; 'display' is the end-user source-card subset.

Available options:
display,
full

Response

Successful Response

The poll primitive's response (HITL-04 §6.6).

Backs GET /conversations/{id}/messages?since_seq=N — one round-trip that returns the conversation's current session_status and every message with seq > since_seq (the new tail). The caller advances its watermark to next_seq and re-polls. The SAME primitive serves both approval-resume polling (awaiting_approvalactive) and handoff operator-relay polling (waiting_for_humanclosed).

next_seq is the high-water mark to pass back as since_seq on the next poll: the max seq of the returned messages, or the request's own since_seq when the tail is empty (so an idle poll doesn't rewind the watermark). The caller watermarks on this exactly as it would on :attr:TurnResponse.message_seqs after a synchronous turn.

session_status
string
required
messages
TurnResponse · object[]
required
next_seq
integer
required