Skip to main content
GET
/
process
List all processes
curl --request GET \
  --url https://sbx-{sandbox_id}-{workspace_id}.{region}.bl.run/process \
  --header 'Authorization: Bearer <token>'
[
  {
    "command": "ls -la",
    "completedAt": "Wed, 01 Jan 2023 12:01:00 GMT",
    "exitCode": 0,
    "logs": "logs output",
    "maxRestarts": 3,
    "name": "my-process",
    "pid": "1234",
    "restartCount": 2,
    "restartOnFailure": true,
    "startedAt": "Wed, 01 Jan 2023 12:00:00 GMT",
    "status": "running",
    "workingDir": "/home/user"
  }
]

Authorizations

Authorization
string
header
required

Response

200 - application/json
command
string
required
Example:
completedAt
string
required
Example:
exitCode
integer
required
Example:
logs
string
required
Example:
name
string
required
Example:
pid
string
required
Example:
startedAt
string
required
Example:
status
enum<string>
required
Available options:
failed,
killed,
stopped,
running,
completed
Example:
workingDir
string
required
Example:
maxRestarts
integer
Example:
restartCount
integer
Example:
restartOnFailure
boolean
Example: