Sandbox processes
Resize a process TTY
Resize a TTY-mode process's window.
Resize a TTY-mode process's window.
Authorization
apiKey AuthorizationBearer <token>
API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.
In: header
Path Parameters
sandboxId*string
Sandbox ID (ULID)
ref*string
Process ULID or name
Query Parameters
resume?boolean
Wake a paused sandbox to serve this request
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
cols*integer
Terminal columns
Format
int32Range
1 <= value <= 65535rows*integer
Terminal rows
Format
int32Range
1 <= value <= 65535Response Body
application/problem+json
curl -X PUT "https://api-dev.tektona.ai/v1/sandboxes/string/processes/string/resize" \ -H "Content-Type: application/json" \ -d '{ "cols": 1, "rows": 1 }'Empty
{ "$schema": "https://api-dev.tektona.ai/schemas/ErrorModel.json", "detail": "Property foo is required but is missing.", "errors": [ { "location": "string", "message": "string", "value": null } ], "instance": "https://example.com/error-log/abc123", "status": 400, "title": "Bad Request", "type": "https://example.com/errors/example"}List processes GET
List a sandbox's running and finished processes together with its persisted autostart definitions. autostart=true returns only the autostart definitions; autostart=false only running and finished processes.
Toggle process autostart PUT
Enable or disable the persisted autostart definition for the process.