Skip to main content
GET
/
v1
/
processes
List all managed processes.
curl --request GET \
  --url http://localhost:2468/v1/processes
{
  "processes": [
    {
      "args": [
        "<string>"
      ],
      "command": "<string>",
      "createdAtMs": 123,
      "id": "<string>",
      "interactive": true,
      "owner": "user",
      "status": "running",
      "tty": true,
      "cwd": "<string>",
      "exitCode": 123,
      "exitedAtMs": 123,
      "pid": 1
    }
  ]
}

Query Parameters

owner
enum<string>
Available options:
user,
desktop,
system

Response

List processes

processes
object[]
required