Delete assets in bulk
Assets to delete
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const result = await client.uploads.bulkDestroy({uploads: [{type: 'upload',id: 'q0VNpiNQSkG6z0lif_O1zg'}]});console.log(result);}run();