# Start a sandbox

Launch stage: Beta

`POST /api/2.0/{name=sandboxes/*}/start`

Starts a previously stopped Sandbox under the same sandbox name.
 Returns NOT_FOUND if there is no stopped sandbox to start for
 the given name.

API scopes: sandbox

## Path parameters

- `name` (string, required)
  Resource name of the sandbox to start, in the form `sandboxes/{sandbox_id}`.

## Returns

Returns the Sandbox object.

## Response

```json
{
  "spec": {
    "compute": {}
  },
  "status": {
    "state": "SANDBOX_STATE_PENDING"
  },
  "name": "string",
  "create_time": "string",
  "update_time": "string",
  "display_name": "string"
}
```

