Skip to main content
GET
/
agents
/
tasks
/
{task_id}
/
mutations
List Task Mutations
curl --request GET \
  --url https://api.example.com/agents/tasks/{task_id}/mutations
{
  "items": [
    {
      "edge_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "operation": "create",
      "resource_table": "<string>",
      "resource_id": "<string>",
      "actor_type": "user",
      "before": {},
      "after": {},
      "fields_changed": [],
      "version_before": 123,
      "version_after": 123,
      "actor_id": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Path Parameters

task_id
string
required

Query Parameters

limit
integer
default:50

Maximum mutations to return per page

Required range: 1 <= x <= 200
cursor
string | null

Composite cursor '|'; returns mutations strictly older than this point under (timestamp DESC, edge_id DESC).

reveal
boolean
default:false

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.

items
ResourceMutation · object[]
required
next_cursor
string | null