process
List all processes
Get a list of all running and completed processes
GET
/
process
[
{
"command": "ls -la",
"completedAt": "Wed, 01 Jan 2023 12:01:00 GMT",
"exitCode": 0,
"name": "my-process",
"pid": "1234",
"startedAt": "Wed, 01 Jan 2023 12:00:00 GMT",
"status": "running",
"workingDir": "/home/user"
}
]
Response
200 - application/json
Process list
The response is of type object[]
.
Was this page helpful?
[
{
"command": "ls -la",
"completedAt": "Wed, 01 Jan 2023 12:01:00 GMT",
"exitCode": 0,
"name": "my-process",
"pid": "1234",
"startedAt": "Wed, 01 Jan 2023 12:00:00 GMT",
"status": "running",
"workingDir": "/home/user"
}
]