> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Resume a paused sandbox

> Resume a paused sandbox

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  Sandbox identifier
</ParamField>

### Response

`object`

<ResponseField name="sandbox_id" type="string (uuid)" required />

<ResponseField name="status" type="string" required />

### Status codes

| Code  | Meaning            |
| ----- | ------------------ |
| `200` | Sandbox resumed    |
| `404` | Sandbox not found  |
| `409` | Sandbox not paused |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.sandbox.stateset.app/api/v1/sandbox/{id}/resume' \
    --header "Authorization: Bearer $STATESET_SANDBOX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "sandbox_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "status": "running"
  }
  ```
</ResponseExample>
