Sandboxes
Resume a paused sandbox
Starts a fresh container of the same template and reattaches the persistent volume. Files under the sandbox’s workspace directory come back; nothing else does.
Sandbox must be in status paused. status transitions from paused to
ready once the container is up.
POST
Resume a paused sandbox
Authorizations
Your account-level Brimble API key. Find it in the dashboard under your profile drawer → API key (click the avatar in the sidebar). Available on paid plans only.
Path Parameters
24-char hex id of the sandbox.
Pattern:
^[a-f0-9]{24}$Response
Resume queued
Example:
"Sandbox pause requested"
Last modified on May 20, 2026
Previous
Run a shell commandRuns `cmd` inside the sandbox via a shell, so pipes, `&&`, redirects, and
installed CLI tools all work. Sandbox must be in status `ready`.
Pass `stream: true` to receive `stdout` / `stderr` as they arrive. The
response then uses `Content-Type: application/x-ndjson` with one JSON
frame per line; the final frame is `{ "type": "done", ... }`. See
`ExecStreamFrame` for the frame shape.
Next
Resume a paused sandbox