bash
List Managed Processes
Lists all background processes managed by the system.
GET
/
api
/
bash
/
processes
/
managed
Copy
curl --request GET \
--url http://localhost:4242/{computer_name}/api/bash/processes/managed
Copy
[
{
"pid": 1234,
"command": "long-running-task",
"status": "running",
"output": "Processing...\n50% complete"
}
]
Response
200
application/json
Successfully retrieved process list
The response is of type ProcessInfo · object[]
.
Copy
curl --request GET \
--url http://localhost:4242/{computer_name}/api/bash/processes/managed
Copy
[
{
"pid": 1234,
"command": "long-running-task",
"status": "running",
"output": "Processing...\n50% complete"
}
]
Assistant
Responses are generated using AI and may contain mistakes.