Send signal to process

POST/browsers/{id}/process/{process_id}/kill

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Browser session ID

process_id*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Signal to send to the process.

Response

application/json

OK

Generic OK response.

curl -X POST "https://example.com/browsers/string/process/497f6eca-6276-4993-bfeb-53cbbbba6f08/kill" \  -H "Content-Type: application/json" \  -d '{    "signal": "TERM"  }'
{  "ok": true}