cURL
curl --request GET \ --url https://sbx-{sandbox_id}-{workspace_id}.{region}.bl.run/process/{identifier}/logs \ --header 'Authorization: Bearer <token>'
{ "logs": "logs output", "stderr": "stderr output", "stdout": "stdout output" }
Get the stdout and stderr output of a process
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Process identifier (PID or name)
Process logs
"logs output"
"stderr output"
"stdout output"
Was this page helpful?