Signal a process
Deliver a signal to the process group. 204 means delivered.
Deliver a signal to the process group. 204 means delivered.
Authorization
apiKey API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.
In: header
Path Parameters
Sandbox ID (ULID)
Process ULID or name
Query Parameters
Wake a paused sandbox to serve this request
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Signal to deliver, uppercase, SIG prefix optional
Value in
- "SIGHUP"
- "SIGINT"
- "SIGQUIT"
- "SIGTERM"
- "SIGKILL"
- "SIGUSR1"
- "SIGUSR2"
- "SIGSTOP"
- "SIGCONT"
- "HUP"
- "INT"
- "QUIT"
- "TERM"
- "KILL"
- "USR1"
- "USR2"
- "STOP"
- "CONT"
Response Body
application/problem+json
curl -X PUT "https://example.com/v1/sandboxes/string/processes/string/signal" \ -H "Content-Type: application/json" \ -d '{ "signal": "SIGHUP" }'{ "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"}Toggle process autostart PUT
Enable or disable the persisted autostart definition for the process.
Start a process POST
Start a process in a sandbox. With wait=true, blocks until the process exits (up to wait_timeout_seconds) and returns the finished result; otherwise returns the running process. Always auto-resumes a paused sandbox.