Skip to main content
POST
/
sandboxes
/
{sandbox_id}
/
resume
Resume a sandbox
curl --request POST \
  --url https://api.tensorlake.ai/sandboxes/{sandbox_id}/resume \
  --header 'Authorization: Bearer <token>'
Resume a suspended named sandbox from its suspend snapshot.
  • This path accepts either the sandbox ID or the sandbox name.
  • Tensorlake returns 202 Accepted when resume starts.
  • Tensorlake returns 200 OK when the sandbox is already running.
  • If the sandbox is not suspended, or its suspend snapshot is missing or not ready, Tensorlake returns 400 Bad Request.
Most sandbox-proxy requests to a suspended named sandbox also resume it automatically, so this endpoint is mainly useful when you want to wake the sandbox proactively before sending traffic.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sandbox_id
string
required

The sandbox ID or sandbox name.

Response

Sandbox was already running