List Task Mutations
Return the paginated mutation log for a task.
Each entry surfaces a full before/after snapshot plus the list of
fields that changed. Entries are ordered newest first and can be
paged forward via next_cursor. Sensitive fields on the
snapshots are masked by default. Pass reveal=true to return
actual values, matching the /resources endpoint’s convention.
Returns:
TaskMutationPage with the current page and a cursor for the
next page (None when there are no more entries).
Raises: NotFoundError: If task not found. InvalidCursorError: If the cursor is malformed.
Documentation Index
Fetch the complete documentation index at: https://docs.pragmatiks.io/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Query Parameters
Maximum mutations to return per page
1 <= x <= 200Composite cursor '|'; returns mutations strictly older than this point under (timestamp DESC, edge_id DESC).
Reveal sensitive field values on before/after snapshots
Response
Successful Response
Paginated page of mutation log entries.
Attributes:
items: Mutation entries for the current page, newest first.
next_cursor: Composite cursor for the next page, or None when
no more entries exist. Built as "<iso-timestamp>|<edge-id>"
over the last entry in items.