List computer changes
GET
/v1/environments/{environmentId}/changesList file-level change events captured for a computer workspace over time.
This is the canonical state-history feed for one computer. Each entry represents one concrete file operation and includes project, thread, step, and agent context when ACP can resolve it.
How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| environmentId | path | string | Yes | Environment ID |
Query parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| limit | query | integer | No | — |
| offset | query | integer | No | — |
| projectId | query | string | No | Filter changes to one specific project-scoped activity stream |
| agentId | query | string | No | Filter changes to one specific agent |
| operation | query | created | uploaded | modified | deleted | No | Filter changes by file operation |
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Environment change listapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| object | string | No | — |
| limit | integer | No | — |
| offset | integer | No | — |
| total | integer | No | — |
| hasMore | boolean | No | — |
| data | object[] | No | — |
| data[].id | string | No | Unique identifier. |
| data[].snapshotId | string | No | Snapshot ID. |
| data[].environmentId | string | No | Computer ID. |
| data[].createdAt | string | No | ISO 8601 timestamp. |
| data[].title | string | No | Display title. |
| data[].routeSource | string | No | — |
| data[].sourceKind | thread | manual | No | — |
| data[].sourceThreadId | string | No | — |
| data[].sourceStepId | string | No | — |
| data[].threadTitle | string | No | — |
| data[].stepTitle | string | No | — |
| data[].projectId | string | No | Project ID. |
| data[].projectName | string | No | — |
| data[].agentId | string | No | Agent ID. |
| data[].agentName | string | No | — |
| data[].additions | integer | No | — |
| data[].deletions | integer | No | — |
| data[].files | object[] | No | — |
| data[].files[].path | string | No | Workspace-relative file path. |
| data[].files[].name | string | No | Human-readable name. |
| data[].files[].changeKind | created | modified | deleted | No | — |
| data[].files[].operation | created | uploaded | modified | deleted | No | — |
| data[].files[].entryType | file | directory | No | — |
| data[].files[].previousPath | string | No | — |
| data[].files[].additions | integer | No | — |
| data[].files[].deletions | integer | No | — |
| data[].files[].diff | string | No | — |
| data[].files[].fileContent | string | No | — |