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 or belongs to another organization. InvalidCursorError: If the cursor is malformed.
Maximum mutations to return per page
1 <= x <= 200Composite cursor '
Reveal sensitive field values on before/after snapshots
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.