Skip to main content
GET
/
api
/
sandboxes
/
checkpoints
/
{checkpointId}
/
patches
List Patches
curl --request GET \
  --url https://app.opencomputer.dev/api/sandboxes/checkpoints/{checkpointId}/patches \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "pa-abc123",
    "checkpointId": "cp-abc123",
    "script": "apt install -y curl",
    "description": "Install curl",
    "strategy": "on_wake",
    "sequence": 1,
    "createdAt": "2025-01-15T10:30:00Z"
  }
]
List all patches for a checkpoint.
checkpointId
string
required
Checkpoint ID
[
  {
    "id": "pa-abc123",
    "checkpointId": "cp-abc123",
    "script": "apt install -y curl",
    "description": "Install curl",
    "strategy": "on_wake",
    "sequence": 1,
    "createdAt": "2025-01-15T10:30:00Z"
  }
]