import Runloop from '@runloop/api-client';const client = new Runloop({ bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted});const blueprint = await client.blueprints.delete('id');console.log(blueprint);
Copy
Ask AI
{}
Blueprint Lifecycle
Delete a Blueprint.
Delete a previously created Blueprint. If a blueprint has dependent snapshots, it cannot be deleted. You can find them by querying: GET /v1/devboxes/disk_snapshots?source_blueprint_id=.
POST
/
v1
/
blueprints
/
{id}
/
delete
JavaScript
Copy
Ask AI
import Runloop from '@runloop/api-client';const client = new Runloop({ bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted});const blueprint = await client.blueprints.delete('id');console.log(blueprint);