FruxonDocs
AgentsExecution Records

Gets the cross-config sandbox impact of this execution.

Returns one row per integration config the run touched in sandbox mode, with the pre-run snapshot id (if the session was auto-snapshotted), the diff against current state (added/modified/removed entities), and the simulator tool-call count. Backs the "Sandbox impact" card in AgentLab and on the execution detail page. Vendor-routed configs do not appear here — they are surfaced on the frontend from the agent revision's bound configs.

GET
/v1/tenants/{tenant}/agents/{agent}/executionRecords/{executionRecord}/sandboxImpact
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

agent*string

The agent identifier.

executionRecord*string

The execution identifier.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/executionRecords/string/sandboxImpact"
{
  "executionId": "00000000-0000-0000-0000-000000000000",
  "runGroupId": "00000000-0000-0000-0000-000000000000",
  "configs": [
    {
      "integrationConfigId": "00000000-0000-0000-0000-000000000000",
      "integrationId": "string",
      "displayName": "string",
      "mode": "NONE",
      "preRunSnapshotId": "00000000-0000-0000-0000-000000000000",
      "diff": {
        "added": [],
        "modified": [],
        "removed": []
      },
      "callCount": 0
    }
  ]
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}