Records to delete
const { SiteClient } = require('datocms-client');async function run() {const client = new SiteClient('YOUR-API-TOKEN');const result = await client.item.bulkDestroy({items: ['4235']});console.log(result);}run();
> node example.js[]