v1

latestOpenAPI 3.1.02026-07-13372867.8 KB
bash

List Managed Processes

Lists all background processes managed by the system.

get/api/bash/processes/managed

Response

Successfully retrieved process list

pidinteger required

Process ID

commandstring required

Command that was executed

statusstring required

Current status of the process

outputstring nullable

Process output if available

Example response

[
  {
    "command": "ls -la",
    "output": "total 20\ndrwxr-xr-x  3 user  group   96 Mar 10 12:34 .",
    "pid": 1234,
    "status": "running"
  }
]