← Back to the changelog
FeatureWeb AppLive Sessions

Fetch sessions with participant notes over the API

Sessions where someone wrote a note on a highlighted line now come back cleanly through the public API, including the notes themselves.

If you build against the Chief API with a client generated from the published spec, a session containing a hand-written note used to fail on read. The note kind was missing from the spec, so your client rejected the whole response and the entire session was unreachable, not only the note.

Notes in session summaries

Requesting a session now returns every summary bullet, including notes a participant wrote against a highlighted line. Your generated client deserializes the response without error.

The four summary kinds

A summary bullet carries one of four kinds:

  • context, decision and todo, the model's reconciliation of the transcript
  • note, written by a participant and never reworded later

Since a note keeps the wording the person typed, you can rely on it staying put across reads.

Regenerate your client from the published OpenAPI document to pick up the new kind, then read any session that has notes on it.