cURL
curl --request DELETE \ --url https://{sandbox_id_or_name}.sandbox.tensorlake.ai/api/v1/processes/{pid} \ --header 'Authorization: Bearer <token>'
{ "error": "<string>", "code": "<string>" }
Force-terminate a process with SIGKILL.
SIGKILL
DELETE /api/v1/processes/{pid}
curl -X DELETE https://<sandbox-id>.sandbox.tensorlake.ai/api/v1/processes/42 \ -H "Authorization: Bearer $TENSORLAKE_API_KEY"
204 No Content
15
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The operating system PID of the process.
Process terminated
Was this page helpful?