Javascript
import Runloop from '@runloop/api-client'; const client = new Runloop({ bearerToken: 'My Bearer Token', }); const blueprintBuildLogsListView = await client.blueprints.logs('id'); console.log(blueprintBuildLogsListView.blueprint_id);
{ "blueprint_id": "<string>", "logs": [ { "level": "<string>", "timestamp_ms": 123, "message": "<string>" } ] }
Get all logs from the building of a Blueprint.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Blueprint
OK
ID of the Blueprint.
List of logs generated during Blueprint build.
Show child attributes
Log line severity level.
Time of log (Unix timestamp milliseconds).
Log line message.
Was this page helpful?