Endpoint
Authentication
Pass your API key in theX-API-Key header.
Path parameters
The ID of the capsule to resume (e.g.,
cl-abc123). The capsule must be in paused status.Response
Returns200 OK with the updated capsule object. The status field will be "running" once the VM has booted and the internal agent is ready.
Unique capsule ID, prefixed with
cl-.Will be
"running" after the capsule has fully resumed.Name of the template the capsule was created from.
Number of virtual CPUs allocated.
Memory allocated, in MiB.
Inactivity TTL in seconds.
ISO 8601 timestamp of when the capsule was originally created.
ISO 8601 timestamp of when the capsule last changed status.
ISO 8601 timestamp of when the capsule most recently reached
running status.Example response
curl
Python SDK
The SDK handles resume transparently when you callCapsule.connect() on a paused capsule:
Error responses
| Status | Description |
|---|---|
401 Unauthorized | Missing or invalid X-API-Key. |
404 Not Found | No capsule with the given ID exists in your team. |
409 Conflict | The capsule is not in paused status. Only paused capsules can be resumed. |