Javascript
import Runloop from '@runloop/api-client'; const client = new Runloop({ bearerToken: 'My Bearer Token', }); const response = await client.scenarios.runs.downloadLogs('id'); console.log(response); const content = await response.blob(); console.log(content);
This response does not have an example.
Download a zip file containing all logs for a Scenario run from the associated devbox.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ScenarioRun ID.
OK
The response is of type file.
file
Was this page helpful?