v1

latestOpenAPI 3.0.32026-07-22194221292.5 KB
compute

Create sandbox snapshot

Creates a point-in-time snapshot of a sandbox. Snapshots capture the sandbox state and can be used for forking into new sandboxes or applications. This is a WIP endpoint — the full implementation depends on the execution plane.

post/sandboxes/{sandboxName}/snapshots

Path parameters

sandboxNamestring required

Name of the sandbox to snapshot

Request body

namestring

Optional human-readable name for the snapshot

Example request

{
  "name": "before-migration"
}

Response

Snapshot created successfully

createdAtstring required

When the snapshot was created

createdBystring

Who created the snapshot

idstring required

Unique snapshot identifier

namestring

Optional human-readable name for the snapshot

sandboxNamestring required

Name of the source sandbox

statusstring required

Status of the snapshot (pending, ready, failed)

workspacestring required

Workspace of the source sandbox

Example response

{
  "id": "snap_abc123",
  "name": "before-migration",
  "status": "ready"
}