Skip to main content
POST
/
process.Process
/
SendSignal
SendSignal
curl --request POST \
  --url https://api.example.com/process.Process/SendSignal \
  --header 'Content-Type: application/json' \
  --data '
{
  "process": {
    "pid": 123
  },
  "signal": "SIGNAL_UNSPECIFIED"
}
'
{}

Body

application/json
process
process · object
signal
enum<string>
Available options:
SIGNAL_UNSPECIFIED,
SIGNAL_SIGTERM,
SIGNAL_SIGKILL

Response

Success

The response is of type SendSignalResponse · object.