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
The response is of type object.
object
Was this page helpful?