SandboxesSandbox management

Get a sandbox

Get a sandbox by ID.

GET
/v1/sandboxes/{id}

Get a sandbox by ID.

AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Path Parameters

id*string

Sandbox ID (ULID)

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/sandboxes/string"
{  "access": "read",  "created_at": "string",  "effective_role": "none",  "egress_network_policy": {    "name": "string"  },  "egress_proxy_profile": {    "name": "string"  },  "id": "string",  "image": "string",  "last_restart_reason": "string",  "last_restarted_at": "string",  "lifecycle": {    "auto_delete_after": "string",    "auto_pause_after": "string",    "auto_pause_mode": "string",    "auto_resume": true,    "configured": {      "auto_delete_after": "string",      "auto_pause_after": "string",      "auto_pause_mode": "string",      "auto_resume": true    },    "source": {      "auto_delete_after": "own",      "auto_pause_after": "own",      "auto_pause_mode": "own",      "auto_resume": "own"    }  },  "location": "string",  "managed": true,  "owner": {    "email": "string",    "id": "string",    "name": "string"  },  "project": {    "display_name": "string",    "id": "string",    "name": "string",    "org": "string",    "slug": "string"  },  "public": true,  "resources": {    "cpu": 2,    "disk": 10,    "memory": 2  },  "restart_count": 0,  "share_type": "none",  "state": "string",  "tags": [    "string"  ],  "template": {    "name": "go-dev",    "reference": "go-dev",    "scope": "system",    "tag": "stable",    "version_id": "01JABCDEF0123456789ABCDEFG"  }}