Request
Path parameters
runId— UUID of the run whose logs you want to inspect.
Example
Responses
200 OK— Returns{ "runId": UUID, "logEntries": LogEntry[] }.400 Bad Request— Invalid run ID.401 Unauthorized— Missing or malformed API key.404 Not Found— The run is not visible to the authenticated organization.
Log entry schema
Each item inlogEntries contains the following fields:
id(UUID) — Unique identifier for the log row.timestamp(string | null) — ISO 8601 timestamp when the event was recorded.level(“info” | “warning” | “error”) — Normalized severity.message(string) — Human-readable summary of the event. Empty strings may appear when the underlying step emits no message.nodeId(string | null) — Identifier of the builder node that produced the log, if available.
task-run.log webhook deliveries to monitor runs
in near real time.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
UUID of the run to inspect.