List the persisted message log for a task (paged by offset).
Returns the channel-message log for a task — chat_message,
agent_reply, chat_cancel, user.continue, etc. By default
EXCLUDES ephemeral streaming chunks (agent_reply_delta,
agent_thought_chunk, agent_message_chunk); set
include_deltas=true to receive them. latest_offset always
reflects the true server-side max offset so resuming with
since=<latest_offset> is safe regardless of the filter.
Same wire shape as GET /conversations/{convId}/messages because
a task’s task_id IS the underlying conversation_id (a task is
just a single-shot channel with a deadline).
Auth path is intentionally cheaper than getTask (one MS
GetConversation + metadata check, no full message-log scan)
so paged reads stay O(1)-per-page in auth cost.
Authorizations
Pass a user JWT or a oag_ User API Key on the
Authorization: Bearer <token> header. Both are validated by
openapi-gateway against the Auth service.
Both credential types are user-scoped: every key (and every JWT) is bound to exactly one owner, and every route grants the caller full access to that owner's own resources. Cross-tenant access is denied by owner-ACL inside the handlers — there is no per-route scope vocabulary on this API.
Removed in v1.1.0: the legacy
agents:*/tasks:*/files:*/instances:*scope set has been dropped together with the403 insufficient_scopeerror. Existingoag_keys automatically gain full owner-level access and do not need to be re-issued. SDK calls that previously passedscopestocreateAPIKeyshould drop the argument. See the changelog at the bottom of this spec for the full migration note.
Path Parameters
128128Query Parameters
Return messages with offset > since. Combine with limit for
paginated reads. Default is 0 (start of task log).
x >= 01 <= x <= 500When true, include ephemeral streaming chunk rows
(agent_reply_delta, agent_thought_chunk,
agent_message_chunk) in the response. Default false.
Accepts true|1|yes (case-insensitive); any other value
is treated as false.