-
Notifications
You must be signed in to change notification settings - Fork 0
REST POST profiles id stop
Timon Home edited this page Mar 19, 2026
·
1 revision
Stops the running process for a profile.
POST /profiles/:id/stop
| Parameter | Type | Description |
|---|---|---|
id |
string | Profile UUID |
No body.
200 OK
{
"ok": true
}400 Bad Request — process is not running:
{
"ok": false,
"error": "Not running"
}404 Not Found — no profile with the given id exists.
| OS | Method |
|---|---|
| Windows |
taskkill /PID {pid} /T /F — kills entire process tree, forced |
| Unix |
SIGTERM, then SIGKILL after 5 seconds if still alive |
Stopping via this endpoint marks the process as intentionally stopped, which suppresses the auto-restart mechanism regardless of the autoRestart profile setting.